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

9 lines
184 B
HTML
Raw Normal View History

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