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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/css/CSS2/positioning/relpos-calcs-001.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: Relative Positioning - auto top = -bottom</title>
5 <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade. net/contact"/>
6 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/Brow serBugsSection/css21testsuite/" /> <!-- 2012-09-25 -->
7 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#relative-posi tioning" />
8 <link rel="match" href="relpos-calcs-001-ref.xht" />
9
10 <meta name="flags" content="" />
11 <meta name="assert" content="For a relatively positioned element, if 'top'
12 is 'auto', its used value is minus the value of 'bottom'." />
13 <style type="text/css">
14 div {
15 height: 120px;
16 width: 120px;
17 }
18 .container {
19 margin-top: -60px;
20 }
21 .outer {
22 background: red;
23 position: relative;
24 bottom: -50%;
25 /*
26 div.outer's used bottom value is -60px
27 div.outer's used top value is 60px
28 div.outer's computed bottom value is -50%
29 but
30 div.outer's computed top value is auto and not 50%!
31 */
32 }
33 .inner {
34 background: green;
35 position: relative;
36 top: inherit;
37 /* using inheritance to test computed vs. used */
38 /* What is inherited is the computed top value of
39 its containing block, which is auto!
40 */
41 }
42 .control {
43 background: red;
44 margin-top: -60px;
45 }
46 </style>
47 </head>
48 <body>
49 <p>Test passes if there is a filled green square and <strong>no red</strong> .</p>
50 <div class="container">
51 <div class="outer">
52 <div class="inner"></div>
53 </div>
54 </div>
55 <div class="control"></div>
56 </body>
57 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698