diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/reftests/writing-mode/1136557-1-nested-spans-ref.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/reftests/writing-mode/1136557-1-nested-spans-ref.html')
-rw-r--r-- | layout/reftests/writing-mode/1136557-1-nested-spans-ref.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/layout/reftests/writing-mode/1136557-1-nested-spans-ref.html b/layout/reftests/writing-mode/1136557-1-nested-spans-ref.html new file mode 100644 index 000000000..929cce15a --- /dev/null +++ b/layout/reftests/writing-mode/1136557-1-nested-spans-ref.html @@ -0,0 +1,37 @@ +<!DOCTYPE HTML> +<html lang="en"> +<head> +<meta charset="utf-8"> +<title>Testcase, bug 1136557</title> +<style> +.a { font: 12px serif } +.b { font: 12.25px serif } +.c { font: 12.5px serif } +.d { font: 12.75px serif } +.e { font: 12px sans-serif } +.f { font: 12.25px sans-serif } +.g { font: 12.5px sans-serif } +.h { font: 12.75px sans-serif } +.i { font: 12px monospace } +.j { font: 12.25px monospace } +.k { font: 12.5px monospace } +.l { font: 12.75px monospace } +</style> +</head> +<body> +<div style="writing-mode:vertical-lr"> +<p class="a">xyzzy</p> +<p class="b">xyzzy</p> +<p class="c">xyzzy</p> +<p class="d">xyzzy</p> +<p class="e">xyzzy</p> +<p class="f">xyzzy</p> +<p class="g">xyzzy</p> +<p class="h">xyzzy</p> +<p class="i">xyzzy</p> +<p class="j">xyzzy</p> +<p class="k">xyzzy</p> +<p class="l">xyzzy</p> +</div> +</body> +</html> |