summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-writing-modes/clearance-calculations-vrl-002.xht
blob: a1b5661e228ddeaf22f0400ad6298a3dc1692cc6 (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
63
64
65
66
67
68
69
70
71
72
<!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: Clearance calculations - clearing box has larger margin than width of float</title>

  <!--
  This test is the verticalized version of
  http://test.csswg.org/suites/css2.1/latest/html4/clear-clearance-calculation-001.htm
  -->

  <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/#vertical-layout" title="7.1 Principles of Layout in Vertical Writing Modes" />
  <link rel="match" href="clearance-calculations-vrl-002-ref.xht" />

  <meta content="ahem image" name="flags" />
  <meta content="This test checks that when a clearing element has a right margin (in a block formating context with 'writing-mode' set to 'vertical-rl') larger than the width of a floated element, then the right margin is collapsed with the margin-left of preceding in-flow sibling. The clearing element is then placed at the point of the resulting collapsed margin." name="assert" />

  <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
  <style type="text/css"><![CDATA[
  div
    {
      height: 5em;
    }

  div#parent
    {
      background: red url("support/clearance-calculation-vrl-002.png");
      font: 20px/1 Ahem; /* computes to 20px/20px */
      min-width: 6em;
      writing-mode: vertical-rl;
    }

  div > div
    {
      background-color: green;
      width: 1em;
    }

  div#preceding-sibling
    {
      margin-left: 1em;
    }

  div#floated-left
    {
      float: left;
    }

  div#clearing-left
    {
      clear: left;
      margin-right: 4em;
    }
  ]]></style>

 </head>

 <body>

  <p>Test passes if there is <strong>no red</strong>.</p>

  <div id="parent">
    <div id="preceding-sibling"></div>
    <div id="floated-left"></div>
    <div id="clearing-left"></div>
  </div>

 </body>
</html>