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

Side by Side Diff: LayoutTests/fast/regions/regions-widows-stack-overflow.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 style="font: 16px/1.25 monospace;">
3 <head>
4 <style>
5 #content {
6 -webkit-flow-into: flow;
7 widows: 4;
8 }
9
10 .region {
11 -webkit-flow-from: flow;
12 width: 100px;
13 height: 100px;
14 }
15
16 #region1 {
17 border: 5px solid green;
18 }
19
20 #region2 {
21 border: 5px solid blue;
22 height: 65px;
23 }
24
25 #region3 {
26 border: 5px solid purple;
27 }
28
29 </style>
30 </head>
31 <body>
32 <div id="content">
33 Linetext1
34 Linetext2
35 Linetext3
36 Linetext4
37 Linetext5
38 Linetext6
39 Linetext7
40 </div>
41 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=122215">Bug 122215</a>. The test passes if the page doesn't crash or loads indefinitely.</p >
42 <div id="container">
43 <div class="region" id="region1"></div>
44 <div class="region" id="region2"></div>
45 <div class="region" id="region3"></div>
46 </div>
47 </body>
48 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698