servo/tests/ref/attr_exists_selector.html
2014-09-08 20:21:42 -06:00

13 lines
273 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Attribute exists selector: [foo]</title>
<style>
p[data-green] { color: green }
</style>
</head>
<body>
<p data-green="">This text should be green.</p>
<p>This text should be black.</p>
</body>
</html>