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

Side by Side Diff: third_party/WebKit/LayoutTests/external/csswg-test/css-flexbox-1/layout-algorithm_algo-cross-line-002.html

Issue 2647353009: Import csswg-test@6212b49508f6272646ac4783fad331ff17031a10 (Closed)
Patch Set: Skip css-values-4 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>
2 <html>
3 <head>
4 <title>CSS Grid Layout Test: cross size determination with overflow:scro ll</title>
5 <link rel="author" title="Tomek Wytrebowicz" href="mailto:tomalecpub+git hub@gmail.com">
6 <link rel="help" href="https://www.w3.org/TR/css-flexbox-1/#algo-cross-l ine" title="9.4. Cross Size Determination" />
7 <link rel="match" href="reference/layout-algorithm_algo-cross-line-002-r ef.html" />
8 <meta name="assert" content="This test checks that correct width is appl ied if overflow: scroll is set" />
9 <style type="text/css">
10 .flex {
11 width: 200px;
12 height: 200px;
13 display: flex;
14 background: red;
15 flex-direction: column;
16 }
17
18 .flex>* {
19 background: green;
20 width: 200px;
21 height: 100px;
22 overflow: scroll;
23 }
24 </style>
25 </head>
26 <body>
27 <p>Test passes if there is a filled green square with scrollbars and <st rong>no red</strong>.</p>
28
29 <div class="flex">
30 <div></div><div></div>
31 </div>
32 </body>
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698