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

Side by Side Diff: third_party/WebKit/LayoutTests/external/csswg-test/css-grid-1/grid-model/grid-display-grid-001.xht

Issue 2670473003: [css-grid] Import W3C Test Suite (Closed)
Patch Set: Add comment about skipped tests Created 3 years, 10 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 Grid Layout Test: 'grid' value for 'display' property</title>
5 <link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igal ia.com" />
6 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/ BrowserBugsSection/css21testsuite/" /> <!-- 2014-11-18 -->
7 <link rel="help" href="http://www.w3.org/TR/css-grid-1/#grid-containers" title="3.1 Establishing Grid Containers" />
8 <link rel="match" href="../../css21/reference/ref-filled-green-100px-squ are.xht" />
9 <meta name="flags" content="ahem" />
10 <meta name="assert" content="This test checks that 'grid' value for 'dis play' property generates a block level containing box." />
11 <style type="text/css"><![CDATA[
12 #reference-overlapped-red {
13 position: absolute;
14 background-color: red;
15 width: 100px;
16 height: 100px;
17 z-index: -1;
18 }
19
20 .test-grid-overlapping-green {
21 display: grid;
22 font: 25px/1 Ahem;
23 color: green;
24 }
25 ]]></style>
26 </head>
27 <body>
28 <p>Test passes if there is a filled green square and <strong>no red</str ong>.</p>
29
30 <div id="reference-overlapped-red"></div>
31 <div class="test-grid-overlapping-green">
32 <span>firs</span>
33 <span>seco</span>
34 </div>
35 <div class="test-grid-overlapping-green">
36 <span>firs</span>
37 <span>seco</span>
38 </div>
39 </body>
40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698