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

Side by Side Diff: LayoutTests/fast/regions/shape-inside/shape-inside-on-regions-inline-content-overflow-multiple-shapes.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 #rectangle {
6 font: 20px Ahem, sans-serif;
7 -webkit-font-smoothing: none;
8 line-height: 20px;
9 -webkit-flow-into: flow;
10 }
11 .region {
12 -webkit-flow-from: flow;
13 width: 200px;
14 height: 200px;
15 border: 2px solid green;
16 }
17 #region1 { shape-inside: rectangle(50px, 50px, 100px, 100px); }
18 #region2 {
19 margin-top: 10px;
20 shape-inside: rectangle(25px, 50px, 140px, 100px);
21 }
22 #border1 {
23 position: absolute;
24 top: 58px;
25 left: 58px;
26 width: 100px;
27 height: 100px;
28 border: 2px solid blue;
29 }
30 #border2 {
31 position: absolute;
32 top: 272px;
33 left: 33px;
34 width: 140px;
35 height: 100px;
36 border: 2px solid blue;
37 }
38 </style>
39 </head>
40 <body>
41 <div id="rectangle">
42 X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X
43 </div>
44
45 <div id="page">
46 <div id="border1"></div>
47 <div id="region1" class="region"></div>
48 <div id="border2"></div>
49 <div id="region2" class="region"></div>
50 </div>
51 <p style="margin-top: 50px;">Requires Ahem font. There are two regions with two ractangle shape-insides, the shape-insides are smaller and have top and left offsets inside the content box. The rectangular shapes boundaries are represent ed by the blue rectangles. The inline content should flow inside the blue ractan gles, the overflow should be pushed down below the last region's content box</p>
52 <p>Bug <a href="http://webkit.org/b/116252">116252</a> [CSS Regions][CSS Exc lusions] shape-inside on regions should respect positioned shapes and overflow</ p>
53 </body>
54 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698