ladybird/Tests/LibWeb/Ref/expected/css-case-insensitive-html-attributes-selector-ref.html

12 lines
287 B
HTML

<!doctype html>
<style>
div[type=one] {
background: red;
}
div[type=three] {
background: blue;
}
</style>
<div type="one">I have a red background</div>
<div type="two">I don't have a green background</div>
<div type="three">I have a blue background</div>