mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-31 21:59:21 +00:00
Now each test type has the same directories: - input - expected - data Also, tests can be in subdirectories within ./input.
19 lines
311 B
HTML
19 lines
311 B
HTML
<!doctype html>
|
|
<link rel="match" href="../expected/css-open-closed-selectors-ref.html" />
|
|
<style>
|
|
:open {
|
|
color: green;
|
|
}
|
|
:closed {
|
|
color: red;
|
|
}
|
|
</style>
|
|
<details open>
|
|
<summary>Hi</summary>
|
|
Well hello friends!
|
|
</details>
|
|
<details>
|
|
<summary>Hi</summary>
|
|
Well hello friends!
|
|
</details>
|