summaryrefslogtreecommitdiffstats
path: root/layout/reftests/writing-mode/1172774-percent-padding-4.html
blob: a3d8859a5b1ede5d454c051afcc1a1d81a23f0b7 (plain)
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
54
55
56
57
58
59
60
61
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>