mirror of
https://github.com/servo/servo.git
synced 2025-06-13 02:44:29 +00:00
15 lines
368 B
HTML
15 lines
368 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Attribute exists selector: [foo] and [*|foo]</title>
|
|
<style>
|
|
p[data-green] { color: green }
|
|
p[*|data-red] { color: red }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p data-green="">This text should be green.</p>
|
|
<p data-red="">This text should be red.</p>
|
|
<p>This text should be black.</p>
|
|
</body>
|
|
</html>
|