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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/csswg-test/css-snap-size-1/snap-width-block-in-available-001-expected.html

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 <!DOCTYPE html>
2 <title>CSS Snap Size: snap-width</title>
3 <link rel="author" title="Koji Ishii" href="kojiishi@gmail.com">
4 <style>
5 .container {
6 font-family: Ahem;
7 font-size: 32px;
8 line-height: 1;
9 }
10 .container > div {
11 margin: .5em 0;
12 }
13 .border > div {
14 border-left: .4em transparent solid;
15 border-right: .4em transparent solid;
16 }
17 .padding > div {
18 padding: 0 .4em;
19 }
20
21 .ref {
22 white-space: pre; /* make sure the line does not wrap */
23 width: 20em;
24 }
25 .content {
26 display: block;
27 height: 1em;
28 background-color: black;
29 }</style>
30 <body>
31 <p class="instructions" style="display:none">Test passes if each pair of boxes a re the same,
32 including how they look, widths, and horizontal positions.
33
34 <div class="container">
35 <div class="ref"><div class="content"></div></div>
36 <div class="ref"><div class="content"></div></div>
37 </div>
38
39 <div class="border container">
40 <div class="ref"><div class="content"></div></div>
41 <div class="ref"><div class="content"></div></div>
42 </div>
43
44 <div class="padding container">
45 <div class="ref"><div class="content"></div></div>
46 <div class="ref"><div class="content"></div></div>
47 </div>
48
49 <div class="border padding container">
50 <div class="ref"><div class="content"></div></div>
51 <div class="ref"><div class="content"></div></div>
52 </div>
53 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698