mirror of
https://github.com/servo/servo.git
synced 2025-06-29 19:43:39 +01:00
13 lines
567 B
HTML
13 lines
567 B
HTML
<!doctype html>
|
|
<meta charset=utf-8>
|
|
<title>Names specified in attr for a content property are case-insensitive in HTML documents</title>
|
|
<link rel=match href=/css/css-content/attr-case-insensitive-ref.html>
|
|
<link rel="help" href="https://drafts.csswg.org/css-content-3/#content-property" />
|
|
<style type="text/css">
|
|
div#gencon:before { content: attr(foo) attr(Foo) attr(fOO)
|
|
attr(bar) attr(Bar) attr(bAR)
|
|
attr(baz) attr(Baz) attr(BAZ) }
|
|
</style>
|
|
<body>
|
|
<div id="gencon" foo="a" Bar="b" bAZ="c"></div>
|
|
</body>
|