Newer
Older
minerva / Tests / LibWeb / Ref / reference / css-case-insensitive-html-attributes-selector-ref.html
@minerva minerva on 13 Jul 184 bytes Initial commit
<!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>