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

Side by Side Diff: third_party/WebKit/LayoutTests/external/csswg-test/css-grid-1/grid-items/grid-inline-items-002.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: Children of grid items do not create new it ems within an inline grid</title>
5 <link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igal ia.com" />
6 <link rel="help" href="http://www.w3.org/TR/css-grid-1/#grid-items" titl e="4 Grid Items" />
7 <link rel="match" href="../../css21/reference/ref-filled-green-100px-squ are.xht" />
8 <meta name="flags" content="ahem" />
9 <meta name="assert" content="Checks that the grid items do not split aro und blocks creating extra items within an inline grid." />
10 <style type="text/css"><![CDATA[
11 #reference-overlapped-red {
12 position: absolute;
13 background-color: red;
14 width: 100px;
15 height: 100px;
16 z-index: -1;
17 }
18
19 .test-inline-grid-overlapping-green {
20 display: inline-grid;
21 font: 25px/1 Ahem;
22 color: green;
23 }
24 ]]></style>
25 </head>
26 <body>
27 <p>Test passes if there is a filled green square and <strong>no red</str ong>.</p>
28
29 <div id="reference-overlapped-red"></div>
30 <div class="test-inline-grid-overlapping-green">
31 <div>
32 <div>it</div>
33 em
34 </div>
35 <div>
36 it
37 <div>em</div>
38 </div>
39 </div><div class="test-inline-grid-overlapping-green">
40 <span>
41 <span>i</span>t
42 </span>
43 <span>
44 e<span>m</span>
45 </span>
46 <span>
47 <span>i</span>t
48 </span>
49 <span>
50 e<span>m</span>
51 </span>
52 </div>
53
54 </body>
55 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698