summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/selectors/dir-style-02-ref.html
blob: 64fb0904651a94e5de9e39fd682a5455ddef454e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>dir() selector reference</title>
    <link rel="author" title="Astley Chen" href="mailto:aschen@mozilla.com">
    <link rel="author" title="Mozilla" href="https://www.mozilla.org">
    <style>
      div { text-align: left; }
      .blue { color: blue; direction: ltr; }
      .lime { color: lime; direction: rtl; }
    </style>
  </head>
  <body>
    <div class="lime">This element has default direction.</div>
    <div class="blue">This element is ltr.</div>
    <div class="lime">This element is rtl.</div>
    <div class="blue">
      <div>This element should inherit ltr.</div>
      <div class="blue">This element is ltr.</div>
      <div class="lime">This element is rtl.</div>
    </div>
    <div class="lime">
      <div>This element should inherit rtl.</div>
      <div class="blue">This element is ltr.</div>
      <div class="lime">This element is rtl.</div>
    </div>
    <div class="lime">This element has an invalid dir attribute and
      should have default direction.</div>
  </body>
</html>