aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/ref/attr_exists_selector.html
blob: 6d8f01e16aa45b9abc33efd7d31db8faf025b8fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!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>