mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-01 16:02:53 +00:00
Now each test type has the same directories: - input - expected - data Also, tests can be in subdirectories within ./input.
19 lines
445 B
HTML
19 lines
445 B
HTML
<!doctype html>
|
|
<link rel="match" href="../expected/css-has-subsequent-sibling.html" />
|
|
<style>
|
|
a:has(~ span) {
|
|
color: orange;
|
|
}
|
|
</style>
|
|
<div>
|
|
<a href="https://example.com">Link</a><span>Hello!</span>
|
|
</div>
|
|
<div>
|
|
<a href="https://example.com">Link</a><em>Hello!</em>
|
|
</div>
|
|
<div>
|
|
<a href="https://example.com">Link</a><em>Hello</em><span>world!</span>
|
|
</div>
|
|
<div>
|
|
<a href="https://example.com">Link</a>
|
|
</div>
|