Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(646)

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/css/CSS2/positioning/absolute-non-replaced-height-008.xht

Issue 2824603002: Import css21/positioning W3C CSS Test Suite (Closed)
Patch Set: git rebase-update Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x html1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <title>CSS Test: Absolutely positioned, non-replaced elements, 'top' set to static position</title>
5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
6 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/ BrowserBugsSection/css21testsuite/" /> <!-- 2012-08-27 -->
7 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#abs-non-r eplaced-height" />
8 <link rel="match" href="absolute-non-replaced-height-008-ref.xht " />
9
10 <meta name="flags" content="" />
11 <meta name="assert" content="When 'top' is set to the static position an d any 'auto' values for top and bottom margin are set to '0', when 'top' and 'bo ttom' are 'auto' and 'height' is not 'auto'." />
12 <style type="text/css">
13 #div1
14 {
15 background: blue;
16 height: 3in;
17 position: relative;
18 width: 1in;
19 }
20 div div
21 {
22 background: orange;
23 bottom: auto;
24 height: 1in;
25 margin-bottom: auto;
26 margin-top: auto;
27 position: absolute;
28 top: auto;
29 width: 100%;
30 }
31
32
33 /*
34
35 auto (to solve) : top
36 +
37 auto (to solve): margin-top
38 +
39 0 : border-top-width
40 +
41 0 : padding-top
42 +
43 1in : height
44 +
45 0 : padding-bottom
46 +
47 0 : border-bottom-width
48 +
49 auto (to solve): margin-bottom
50 +
51 auto (to solve) : bottom
52 =============
53 3in : height of containing block
54
55
56 "
57 'top' and 'bottom' are 'auto' and 'height' is not 'auto',
58 then set 'top' to the static position,
59 set 'auto' values for 'margin-top' and 'margin-bottom' to 0,
60 and solve for 'bottom'
61 "
62
63 so this brings:
64
65 0 (solved static position) : top
66 +
67 0 (solved): margin-top
68 +
69 0 : border-top-width
70 +
71 0 : padding-top
72 +
73 1in : height
74 +
75 0 : padding-bottom
76 +
77 0 : border-bottom-width
78 +
79 0 (solved): margin-bottom
80 +
81 auto (to solve) : bottom
82 =============
83 3in : height of containing block
84
85 So, bottom must use 2in in order to balance the equation
86
87
88 */
89 </style>
90 </head>
91 <body>
92 <p>Test passes if a blue rectangle is below an orange square.</p>
93 <div id="div1">
94 <div></div>
95 </div>
96 </body>
97 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698