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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-table-fixup-001-expected.xhtml

Issue 1922043004: Import csswg-test@b2daa426addd5ccb8e9ce1c5d800f9d82603f1ec (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update W3CImportExpectations and make me owner for css-scoping-1 Created 4 years, 7 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 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Any copyright is dedicated to the Public Domain.
4 http://creativecommons.org/publicdomain/zero/1.0/
5 -->
6 <!-- Reference case for ensuring table-fixup does not happen to adjacent
7 table parts directly inside of a flex container. -->
8 <html xmlns="http://www.w3.org/1999/xhtml">
9 <head>
10 <title>CSS Reftest Reference</title>
11 <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com" />
12 <style>
13 div.flexbox {
14 border: 1px dashed blue;
15 width: 200px;
16 display: flex;
17 justify-content: space-around;
18 }
19
20 .a {
21 background: lightgreen;
22 width: 48px;
23 }
24
25 .b {
26 background: yellow;
27 width: 48px;
28 }
29
30 .c {
31 background: pink;
32 width: 48px;
33 }
34 </style>
35 </head>
36 <body>
37 <!-- In each example here, we simply use blocks instead of table parts -->
38 <div class="flexbox"
39 ><div class="a">cell1</div><div class="b">cell2</div></div>
40
41 <div class="flexbox"
42 ><div class="a">cell1</div><div class="b">t</div></div>
43
44 <div class="flexbox"
45 ><div></div><div class="b">cell1</div></div>
46 </body>
47 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698