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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/css-flexbox-img-expand-evenly-expected.html

Issue 2104493003: Import csswg-test@0589ea025a684e31742740ca3b599230bcc25e5d (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update TestExpectations, delete background Created 4 years, 5 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>CSS Reftest Reference</title> 4 <title>CSS Reftest Reference</title>
5 <link rel="author" title="Eiji Kitamura" href="mailto:agektmr+github@gmail.c om"> 5 <link rel="author" title="Eiji Kitamura" href="mailto:agektmr+github@gmail.c om">
6 <style type="text/css"> 6 <style type="text/css">
7 7
8 /* ADD STYLE BLOCK HERE (PREFERRABLE TO INLINE STYLES) */ 8 /* ADD STYLE BLOCK HERE (PREFERRABLE TO INLINE STYLES) */
9 div.flexbox { 9 div.flexbox {
10 height: 50px; 10 height: 50px;
11 width: 300px; 11 width: 300px;
12 border: 2px dotted black; 12 border: 2px dotted black;
13 } 13 }
14 img { 14 img {
15 width: 98px; 15 width: 98px;
16 height: 48px; 16 height: 48px;
17 background: purple; 17 background: purple;
18 border: 1px solid white; 18 border: 1px solid white;
19 } 19 }
20 20
21 </style> 21 </style>
22 </head> 22 </head>
23 <body> 23 <body>
24 <p>3 rectangular images fill out border.</p> 24 <p>3 rectangular images fill out border.</p>
25 25
26 <!-- PAGE CONTENT --> 26 <!-- PAGE CONTENT -->
27 <div class="flexbox"> 27 <div class="flexbox">
28 <!-- It is important that there is no linebreak between the <img> tags. 28 <!-- It is important that there is no linebreak between the <img> tags.
29 The line break would be rendered as whitespace, breaking the test. 29 The line break would be rendered as whitespace, breaking the test.
30 --> 30 -->
31 <img src="support/solidblue.png" /><img src="support/solidblue.png" /><i mg src="support/solidblue.png" /> 31 <img src="support/solidblue.png" /><img src="support/solidblue.png" /><i mg src="support/solidblue.png" />
32 </div> 32 </div>
33 33
34 34
35 </body> 35 </body>
36 </html> 36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698