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

Side by Side Diff: LayoutTests/fast/css/empty-cell-baseline.html

Issue 10807056: Revert 117339 - CSS 2.1 failure: inline-table-001 fails (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1180/
Patch Set: Created 8 years, 5 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 HTML 4.01//EN" "http://www.w3.org/TR/html4/st rict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: Baseline on an empty cell</title>
5 <meta name="flags" content="">
6 <meta name="assert" content="There should be no red.">
7 <style type="text/css">
8 div
9 {
10 border-style: dashed;
11 border-collapse: collapse;
12 display: inline-table;
13 table-layout: fixed;
14 }
15 #row
16 {
17 display: table-row;
18 }
19 #abs
20 {
21 display: block;
22 position: absolute;
23 top: 3em;
24 height: 4em;
25 width: 4em;
26 background-color:green;
27 }
28 #cell
29 {
30 display: table-cell;
31 height: 4em;
32 width: 4em;
33 background-color:red;
34 }
35 #text
36 {
37 border-style: none;
38 display: block;
39 position: absolute;
40 top: 8em;
41 }
42 </style>
43 </head>
44 <body>
45 <p style="font: 1em Ahem;">Test</p>
46 <div id="table">
47 <div id="row">
48 <div id="cell"></div>
49 </div>
50 </div>
51 <div id="abs">
52 </div>
53 <div id="text">There should be no red.</div>
54 </body>
55 </html>
OLDNEW
« no previous file with comments | « LayoutTests/css2.1/20110323/inline-table-003.htm ('k') | LayoutTests/fast/css/empty-cell-baseline-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698