File: margin-collapse-vlr-023.xht

package info (click to toggle)
thunderbird 1%3A60.9.0-1~deb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,339,492 kB
  • sloc: cpp: 5,457,040; ansic: 2,360,385; python: 596,167; asm: 340,963; java: 326,296; xml: 258,830; sh: 84,445; makefile: 23,705; perl: 17,317; objc: 3,768; yacc: 1,766; ada: 1,681; lex: 1,364; pascal: 1,264; cs: 879; exp: 527; php: 436; lisp: 258; ruby: 153; awk: 152; sed: 53; csh: 27
file content (114 lines) | stat: -rw-r--r-- 3,628 bytes parent folder | download | duplicates (4)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

 <head>

  <title>CSS Writing Modes Test: 'vertical-lr' and margin collapsing - absolute positioning and siblings</title>

  <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
  <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#logical-direction-layout" title="7.4 Flow-Relative Mappings" />

  <meta content="ahem image" name="flags" />
  <meta name="assert" content="This test checks that absolutely positioned boxes do not collapse margins with siblings in 'vertical-lr' writing-mode." />

  <!--
  left static position for the div#abs-pos could be determined with margin collapse
  or without margin collapse; so there are 2 possible rendered layouts for such code
  2015-01-18

  Test adapted and modified from
  http://test.csswg.org/suites/css2.1/nightly-unstable/html4/margin-collapse-012.htm

  "
  The margin collapsing rules apply exactly with the block-start margin substituted for the top margin and the block-end margin substituted for the bottom margin.
  "
  -->

  <style type="text/css"><![CDATA[
  body
    {
      margin-left: 66px;
      /*
      The sole purpose of this rule is to increase noticeability
      of test failure in Google Chrome 40+
      */
    }

  p
    {
      font: 16px/1.25 serif; /* computes to 16px/20px */
    }

  div#test
    {
      border: teal solid 1em;
      font: 25px/1 Ahem;
      height: 4em; /* computes to 100px */
      margin-bottom: 0.2em; /* computes to 5px */
      writing-mode: vertical-lr;
    }

  div#wrapper
    {
      background-color: orange;
      border-left: blue solid 1em;
      width: 3em;
    }

  div#wrapper > div
    {
      height: 4em;
      margin-left: 1em;
    }

  div#abs-pos
    {
      background-color: blue;
      position: absolute;
      top: 97px;
      /*
      16px : p's margin-top
    +
      20px : p's top-most line box height
    +
      20px : p's bottom-most line box height
    +
      16px : p's margin-bottom
    +
      25px : div#test's border-top
   ==========
      97px
      */
      width: 1em;
    }

  div.ref
    {
      border: teal solid 1em;
      font: 25px/1 Ahem;
      height: 4em; /* computes to 100px */
      margin-bottom: 0.2em;
      width: 4em;
    }
  ]]></style>

 </head>

 <body>

  <p>Test passes if the top square has a layout<br />identical to one of the squares below it.</p>

  <div id="test">
    <div id="wrapper">
      <div id="widthless-static"></div>
      <div id="abs-pos"></div>
    </div>
  </div>

  <div class="ref" id="ref1"><img src="support/swatch-blue.png" width="25" height="100" alt="Image download support must be enabled" /><img src="support/swatch-orange.png" width="25" height="100" alt="Image download support must be enabled" /><img src="support/swatch-orange.png" width="25" height="100" alt="Image download support must be enabled" /><img src="support/swatch-blue.png" width="25" height="100" alt="Image download support must be enabled" /></div>

  <div class="ref" id="ref2"><img src="support/swatch-blue.png" width="25" height="100" alt="Image download support must be enabled" /><img src="support/swatch-orange.png" width="25" height="100" alt="Image download support must be enabled" /><img src="support/swatch-blue.png" width="25" height="100" alt="Image download support must be enabled" /><img src="support/swatch-orange.png" width="25" height="100" alt="Image download support must be enabled" /></div>

 </body>
</html>