diff options
Diffstat (limited to 'layout/reftests/writing-mode/1172774-percent-padding-4.html')
-rw-r--r-- | layout/reftests/writing-mode/1172774-percent-padding-4.html | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/layout/reftests/writing-mode/1172774-percent-padding-4.html b/layout/reftests/writing-mode/1172774-percent-padding-4.html new file mode 100644 index 000000000..a3d8859a5 --- /dev/null +++ b/layout/reftests/writing-mode/1172774-percent-padding-4.html @@ -0,0 +1,62 @@ +<!DOCTYPE html> +<html> + <head> + <title>CSS Writing Modes Test: padding percentage and 'vertical-lr'</title> + <link rel="author" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> + <meta content="This test checks that percentages on the padding are calculated with respect to the inline size (height!) of the containing block if 'writing-mode' of such containing block is 'vertical-lr'. In this test, div.outer's computed 'writing-mode' value is 'vertical-lr' and it is the div.inner's containing block." name="assert"> + <style type="text/css"> + div.outer + { + background-color: blue; + border: blue solid 3px; + height: 200px; + -ah-writing-mode: vertical-lr; + -webkit-writing-mode: vertical-lr; + writing-mode: tb-lr; /* IE11 */ + writing-mode: vertical-lr; + } + + hr + { + background-color: transparent; + border: transparent none 0px; + width: 3px; + margin: auto 3px; + } + + div.inner + { + background-color: transparent; + width: 50px; + -ah-writing-mode: horizontal-tb; + -webkit-writing-mode: horizontal-tb; + writing-mode: lr-tb; /* IE11 */ + writing-mode: horizontal-tb; + } + + div.foo + { + padding-left: 2.5%; /* 5px */ + padding-top: 50%; /* 100px */ + padding-bottom: 25%; /* 50px */ + padding-right: 10%; /* 20px */ + } + + div.bar + { + padding-left: 10%; + padding-top: 25%; + padding-bottom: 50%; + padding-right: 2.5%; + } + </style> + </head> + + <body> + <div class="outer"> + <div class="inner bar"><img src="swatch-yellow.png" width="50" height="50" alt="Image download support must be enabled"></div> + <hr> + <div class="inner foo"><img src="swatch-yellow.png" width="50" height="50" alt="Image download support must be enabled"></div> + </div> + </body> +</html> |