mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-29 14:32:55 +00:00
Now each test type has the same directories: - input - expected - data Also, tests can be in subdirectories within ./input.
19 lines
388 B
HTML
19 lines
388 B
HTML
<html lang="en">
|
|
<link rel="match" href="../expected/css-lang-selector-ref.html" />
|
|
<style>
|
|
div {
|
|
width: 100px;
|
|
height: 100px;
|
|
border: 1px solid black;
|
|
}
|
|
div:lang(en) {
|
|
background-color: red;
|
|
}
|
|
div:lang("fr",de) {
|
|
background-color: blue;
|
|
}
|
|
</style>
|
|
<div>Red</div>
|
|
<div lang="fr">Blue</div>
|
|
<div lang="de">Blue</div>
|
|
</html>
|