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

Side by Side Diff: LayoutTests/fast/regions/region-width-change-relayout-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 .flowContent { font-size: 50px; font-family: monospace; line-height: 2; color: green; }
6
7 .regionSize { width: 200px; }
8 .regionSize2 { width: 400px; }
9
10 #region { height: 100px; border: 1px solid black;}
11 #region2 { height: 100px; border: 1px solid black;}
12 </style>
13 </head>
14 <body>
15 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=103993"> Bl ocks don't relayout children if the width of a region changes</a>.</p>
16 <p>When the width of a region increases the lines in that region should be recomputed.</p>
17 <p>On success, there should be no text outside the black rectangles and text only inside the top region.</p>
18 <div id="region" class="regionSize2"><span class="flowContent">a a a a a </span></div>
19 <div id="region2" class="regionSize"><span class="flowContent"></span></ div>
20 </body>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698