tenfourfox/layout/reftests/writing-mode/1172774-percent-padding-3.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

63 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>CSS Writing Modes Test: padding percentage and 'vertical-rl'</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-rl'. In this test, div.outer's computed 'writing-mode' value is 'vertical-rl' 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-rl;
-webkit-writing-mode: vertical-rl;
writing-mode: tb-rl; /* IE11 */
writing-mode: vertical-rl;
}
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 foo"><img src="swatch-yellow.png" width="50" height="50" alt="Image download support must be enabled"></div>
<hr>
<div class="inner bar"><img src="swatch-yellow.png" width="50" height="50" alt="Image download support must be enabled"></div>
</div>
</body>
</html>