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

Side by Side Diff: LayoutTests/fast/regions/named-flow-content-order-2-expected.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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 <style>
5 .region {
6 height: 180px;
7 width: 80px;
8 border: 2px solid black;
9 }
10
11 .content {
12 height: 60px;
13 width: 40px;
14 }
15
16 #red {
17 background-color: red;
18 }
19
20 #green {
21 background-color: green;
22 display: inline-block;
23 }
24
25 #yellow {
26 background-color: yellow;
27 display: inline-block;
28 }
29
30 #blue {
31 background-color: blue;
32 }
33 </style>
34 </head>
35 <body onload="shuffle()">
36 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=103501">Fix content node renderers ordering inside the named flow thread</a>.</p>
37 <p>The test adds four colored content nodes (mix of inline and block) to a flow and then modifies the flow-into properties to force renderers to shuffle .</p>
38 <p>On success, you should see the blocks ordered: red (top), green, yell ow (middle), blue (bottom).</p>
39
40 <div class="region">
41 <div id="red" class="content">1</div>
42 <div id="green"class="content">2</div><div id="yellow"class="content ">3</div>
43 <div id="blue" class="content">4</div>
44 </div>
45 </body>
46 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/regions/named-flow-content-order-2.html ('k') | LayoutTests/fast/regions/named-flow-content-order-3.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698