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

Side by Side Diff: LayoutTests/fast/regions/webkit-flow-renderer-nested.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
3 <style>
4 #DIV1, #DIV3 { -webkit-flow-into:flowA; }
5 #DIV2 { -webkit-flow-into:flowB; }
6
7 #REGION1, #REGION2 {
8 width: 100%;
9 height: 100px;
10 }
11 #REGION1 { -webkit-flow-from: flowA; }
12 #REGION2 { -webkit-flow-from: flowB; }
13 </style>
14
15 <div id="DIV1">
16 DIV1 - flowA
17 <div id="DIV2">DIV2 - flowB</div>
18 <p>
19 <div id="DIV3">DIV3 - flowA</div>
20 </p>
21 </div>
22
23 <!-- Make some regions, so that the flow has a size and it's visible in the rend er tree. -->
24 <div id="REGION1"></div>
25 <div id="REGION2"></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698