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

Side by Side Diff: LayoutTests/fast/regions/dialog-fragmentation.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 <html>
2 <head>
3 <style>
4 .content {
5 background-color: blue;
6 color: blue;
7 display: block;
8 position: relative;
9 padding: 0px;
10 border: none;
11 width: 80px;
12 height: 120px;
13 -webkit-flow-into: first;
14 }
15
16 #region1 {
17 width: 160px;
18 height: 80px;
19 -webkit-flow-from: first;
20 }
21 #region2 {
22 width: 400px;
23 height: 100px;
24 -webkit-flow-from: first;
25 }
26 .red {
27 width: 100%;
28 height: 100%;
29 background-color: red;
30 }
31 </style>
32 </head>
33
34 <body>
35 <ul>
36 <li>The blue squares are a dialog element flowed across two regions. </li>
37 <li>Test passes if you only see two blue rectangles.</li>
38 <li>Test fails if you can see text or the red color.</li>
39 </ul>
40 <dialog open class="content">
41 xxxx<br>xxxx<br>xxxx<br>xxxx<br>Test failed!<br>xxxx
42 </dialog>
43 <div id="region1">
44 <div class="red"></div>
45 </div>
46 <div id="region2">
47 <div class="red"></div>
48 </div>
49 </body>
50 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/regions/dialog-autosize-expected.html ('k') | LayoutTests/fast/regions/dialog-fragmentation-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698