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

Side by Side Diff: LayoutTests/fast/regions/overflow-not-moving-below-floats-in-variable-width-regions.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 <link rel="stylesheet" href="resources/region-style.css">
3 <style>
4 body { -webkit-font-smoothing: none; font: 16px/1.25 monospace; }
5
6 .secondBox {
7 width: 75%;
8 margin: auto;
9 }
10
11 #region1, #region2, #region3 {
12 border: 1px solid black;
13 -webkit-flow-from: flow1;
14 }
15
16 #region1 {
17 width: 300px;
18 height: 100px;
19 }
20
21 #region2 {
22 width: 404px;
23 height: 180px;
24 }
25
26 #region3 {
27 width: 220px;
28 height: 120px;
29 }
30 </style>
31 <p>The first and last lines of text in the regions below should be clipped to th e green box. The overflow
32 section sizes itself and clips differently in each region. The green box should be even with the lime floats at the top of the first region.</p>
33
34 <div class="overflowContentFlow">
35 <div class="overflowFirstBox">
36 <div class="overflowBox floatLeft"></div> <div class="overflowBox floatR ight"></div>
37 <div class="overflowSecondBox secondBox">
38 <div style="width: 500px">Clipped line of text that should not be vi sible.</div>
39 <p>These lines will not spill out of the regions. These lines will n ot spill out of the regions.
40 These lines will not spill out of the regions. These lines will not spill out of the regions. </p>
41 <p>These lines will not spill out of the regions. These lines will n ot spill out of the regions.</p>
42 <div style="width: 500px">Clipped line of text that should not be vi sible.</div>
43 </div>
44 </div>
45 </div>
46
47 <div id="container">
48 <div id="region1"></div>
49 <div id="region2"></div>
50 <div id="region3"></div>
51 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698