Files
serenity/Tests/LibWeb/Ref/reference/css-case-insensitive-html-attributes-selector-ref.html
Edwin Hoksberg e2bf7d1a36 LibWeb: Add attribute list that must always be compared without casing
(cherry picked from commit 2b30414c1d8641eaf4212db69e40a4381005314c)
2024-06-28 10:56:14 +02:00

9 lines
184 B
HTML

<!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>