summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-writing-modes/ortho-htb-alongside-vrl-floats-006.xht
blob: 5f1ae73cad3e283a9348a338f4081701a2fa5c60 (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
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
<!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: positioning of an orthogonal (horizontal-tb) block alongside vertical-rl floats</title>

  <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
  <link rel="bookmark" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1283721" title="Bug 1283721: Incorrect positioning of orthogonal (horizontal-tb) block alongside vertical-rl floats" />
  <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="ortho-htb-alongside-vrl-floats-006-ref.xht" />

  <!--
  The 'horizontal-tb' equivalent of this test is
  http://www.gtalbot.org/BugzillaSection/Bug1283721-new-block-form-ctxt-alongside-floats-005.html
  -->

  <meta content="image" name="flags" />
  <meta content="This test checks that non-positioned block boxes created after the float box flow vertically as if the float did not exist. In this test, the orange block box, which creates a new block formatting context, should flow next to the earliest float that offers sufficient (logical width) space: in this test, this is the blue rectangle." name="assert" />
  <meta name="DC.date.created" content="2016-07-04T09:54:03+11:00" scheme="W3CDTF" />
  <meta name="DC.date.modified" content="2016-07-21T09:54:03+11:00" scheme="W3CDTF" />

  <style type="text/css"><![CDATA[
  html
    {
      writing-mode: vertical-rl;
    }

  div
    {
      width: 100px;
    }

  div#tall-fuchsia-float
    {
      background-color: fuchsia;
      float: left;
      height: 75%;
    }

  div#second-blue-float
    {
      background-color: blue;
      clear: left;
      float: left;
      height: 25%;
    }

  div#third-olive-float-with-clear
    {
      background-color: olive;
      clear: left;
      float: left;
      height: 50%;
    }

  div#fourth-fuchsia-float-with-clear
    {
      background-color: fuchsia;
      clear: left;
      float: left;
      height: 75%;
    }

  div#orange-horiz-tb
    {
      background-color: orange;
      height: 50%;
      writing-mode: horizontal-tb;
    }
  ]]></style>

 </head>

 <body>

  <p><img src="support/ortho-htb-alongside-vrl-floats-002-exp-res.png" width="300" height="36" alt="Image download support must be enabled" /></p>

  <!--
  The image says:
  Test passes if the orange rectangle
  is below the blue rectangle.
  -->

  <div id="tall-fuchsia-float">&nbsp;</div>

  <div id="second-blue-float">&nbsp;</div>

  <div id="third-olive-float-with-clear">&nbsp;</div>

  <div id="fourth-fuchsia-float-with-clear">&nbsp;</div>

  <div id="orange-horiz-tb">&nbsp;</div>

 </body>
</html>