serenity/Tests/LibWeb/Ref/css-lang-selector.html
Sam Atkins 12a2750d1e LibWeb: Support multiple values in :lang() selector
Parse them, and also don't give up completely if the first language
listed doesn't match an element.
2023-08-16 18:05:26 +02:00

19 lines
321 B
HTML

<html lang="en">
<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>