File: direction-overall.html

package info (click to toggle)
thunderbird 1%3A144.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 4,725,312 kB
  • sloc: cpp: 7,869,225; javascript: 5,974,276; ansic: 3,946,747; python: 1,421,062; xml: 654,642; asm: 474,045; java: 183,117; sh: 110,973; makefile: 20,398; perl: 14,362; objc: 13,086; yacc: 4,583; pascal: 3,448; lex: 1,720; ruby: 999; exp: 762; sql: 731; awk: 580; php: 436; lisp: 430; sed: 69; csh: 10
file content (53 lines) | stat: -rw-r--r-- 1,945 bytes parent folder | download | duplicates (24)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8"/>
    <title>Verify dir attribute on various containers</title>
    <link rel="help" href="https://w3c.github.io/mathml-core/#attributes-common-to-html-and-mathml-elements">
    <link rel="help" href="https://w3c.github.io/mathml-core/#css-styling">
    <link rel="help" href="https://w3c.github.io/mathml-core/#the-top-level-math-element">
    <link rel="help" href="https://w3c.github.io/mathml-core/#horizontally-group-sub-expressions-mrow">
    <link rel="help" href="https://w3c.github.io/mathml-core/#style-change-mstyle">
    <meta name="assert" content="Verify dir attribute on various containers.">
    <link rel="match" href="direction-overall-ref.html">
  </head>
  <body>

    <!-- Test dir="rtl" on <math>, <mrow> and <mstyle> elements. The rectangle
         inside these elements should be displayed right-to-left.  -->

    <p>
      math:
      <math dir="rtl">
        <mspace width="25px" height="25px" mathbackground="red"/>
        <mspace width="25px" height="25px" mathbackground="green"/>
        <mspace width="25px" height="25px" mathbackground="blue"/>
      </math>
    </p>

    <p>
      mrow:
      <math>
        <mrow dir="rtl">
          <mspace width="25px" height="25px" mathbackground="red"/>
          <mspace width="25px" height="25px" mathbackground="green"/>
          <mspace width="25px" height="25px" mathbackground="blue"/>
        </mrow>
      </math>
    </p>

    <p>
      mstyle:
      <math>
        <mstyle dir="rtl">
          <mspace width="25px" height="25px" mathbackground="red"/>
          <mspace width="25px" height="25px" mathbackground="green"/>
          <mspace width="25px" height="25px" mathbackground="blue"/>
        </mstyle>
      </math>
    </p>

    <script src="/mathml/support/feature-detection.js"></script>
    <script>MathMLFeatureDetection.ensure_for_match_reftest("has_mspace");</script>
  </body>
</html>