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

Side by Side Diff: LayoutTests/fast/regions/outline-sides-in-region.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 <!-- this test should display two identical yellow squares -->
2 <style type="text/css">
3
4 h1{
5 outline: 5px solid yellow;
6 }
7
8 #source > h1 {
9 margin-top: 0;
10 }
11
12 #source{
13 -webkit-flow-into: body;
14 }
15
16 #region{
17 -webkit-flow-from: body;
18 }
19 div{
20 width:200px;
21 height:200px;
22 }
23 </style>
24 <body>
25 <div id="source">
26 <h1>&nbsp;</h1>
27 </div>
28
29 <div id="region"></div>
30 <div>
31 <h1>&nbsp;</h1>
32 </div>
33 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698