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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/css/CSS2/floats-clear/margin-collapse-158-ref.xht

Issue 2818213003: Import css21/floats-clear W3C CSS Test Suite (Closed)
Patch Set: update TestExpectations 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
3 <html xmlns="http://www.w3.org/1999/xhtml">
4
5 <head>
6
7 <title>CSS Reftest Reference</title>
8 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserB ugsSection/css21testsuite/" />
9
10 <style type="text/css"><![CDATA[
11 table
12 {
13 background-color: orange;
14 border: black solid medium;
15 border-spacing: 0px;
16 display: inline-table;
17 margin: 1em 0em auto 1em;
18 }
19
20 td
21 {
22 height: 2em;
23 padding: 0px;
24 width: 3em;
25 }
26
27 td.yellow {background-color: yellow;}
28 ]]></style>
29
30 </head>
31
32 <body>
33
34 <p>Test passes if the 2 squares are identical.</p>
35
36 <table>
37 <tr>
38 <td class="yellow"></td>
39 <td class="yellow"></td>
40 </tr>
41 <tr>
42 <td></td>
43 <td class="yellow"></td>
44 </tr>
45 <tr>
46 <td></td>
47 <td></td>
48 </tr>
49 </table><table>
50 <tr>
51 <td class="yellow"></td>
52 <td class="yellow"></td>
53 </tr>
54 <tr>
55 <td></td>
56 <td class="yellow"></td>
57 </tr>
58 <tr>
59 <td></td>
60 <td></td>
61 </tr>
62 </table>
63
64 </body>
65 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698