LibWeb: Add attribute list that must always be compared without casing

This commit is contained in:
Edwin Hoksberg 2024-06-22 13:33:48 +02:00 committed by Andreas Kling
parent 68d84755f4
commit 2b30414c1d
Notes: sideshowbarker 2024-07-17 07:43:05 +09:00
4 changed files with 75 additions and 2 deletions

View file

@ -0,0 +1,8 @@
<!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>