diff options
Diffstat (limited to 'layout/reftests/mathml/dir-11-ref.html')
-rw-r--r-- | layout/reftests/mathml/dir-11-ref.html | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/layout/reftests/mathml/dir-11-ref.html b/layout/reftests/mathml/dir-11-ref.html new file mode 100644 index 000000000..c23763f44 --- /dev/null +++ b/layout/reftests/mathml/dir-11-ref.html @@ -0,0 +1,76 @@ +<!DOCTYPE html> +<html> + <head><title>Test direction: dynamic change</title></head> + <body> + + <p> + math: + <math dir="rtl"> + <mi>a</mi> + <mi>b</mi> + <mi>c</mi> + </math> + <math dir="rtl"> + <mi>a</mi> + <mi>b</mi> + <mi>c</mi> + </math> + <math> + <mi>a</mi> + <mi>b</mi> + <mi>c</mi> + </math> + </p> + + <p> + mstyle: + <math> + <mstyle dir="rtl"> + <mi>a</mi> + <mi>b</mi> + <mi>c</mi> + </mstyle> + </math> + <math> + <mstyle dir="rtl"> + <mi>a</mi> + <mi>b</mi> + <mi>c</mi> + </mstyle> + </math> + <math> + <mstyle> + <mi>a</mi> + <mi>b</mi> + <mi>c</mi> + </mstyle> + </math> + </p> + + <p> + mrow: + <math> + <mrow dir="rtl"> + <mi>a</mi> + <mi>b</mi> + <mi>c</mi> + </mrow> + </math> + <math> + <mrow dir="rtl"> + <mi>a</mi> + <mi>b</mi> + <mi>c</mi> + </mrow> + </math> + <math> + <mrow> + <mi>a</mi> + <mi>b</mi> + <mi>c</mi> + </mrow> + </math> + </p> + + </body> +</html> |