mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-26 18:59:35 +00:00
16 lines
533 B
HTML
16 lines
533 B
HTML
<!doctype html>
|
|
<link rel="match" href="../expected/css-case-insensitive-html-attributes-selector-ref.html" />
|
|
<style>
|
|
div[type=one] { /* 'type' is a case-insensitive html attribute */
|
|
background: red;
|
|
}
|
|
div[test=two] { /* 'test' is NOT a case-insensitive html attribute */
|
|
background: green;
|
|
}
|
|
[aB] div {
|
|
background: blue;
|
|
}
|
|
</style>
|
|
<div type="ONE">I have a red background</div>
|
|
<div test="TWO">I don't have a green background</div>
|
|
<div ab><div>I have a blue background</div></div>
|