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

Side by Side Diff: LayoutTests/fast/regions/shape-inside/shape-inside-on-regions-inline-content-overflow-bottom-positioned-multiple-shapes-expected.html

Issue 19865002: [CSS Shapes] Port shape-inside on regions and shape's content overflow from WebKit (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: [CSS Shapes] Port shape-inside on regions and shape's content overflow from WebKit Created 7 years, 5 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 #page {
6 font: 20px Ahem, sans-serif;
7 line-height: 20px;
8 -webkit-font-smoothing: none;
9 }
10 .region {
11 width: 200px;
12 height: 200px;
13 border: 2px solid green;
14 padding: 10px;
15 }
16 #region2 { margin-top: 10px; }
17 #border1 {
18 position: absolute;
19 top: 118px;
20 left: 68px;
21 width: 100px;
22 height: 100px;
23 border: 2px solid blue;
24 }
25 #border2 {
26 position: absolute;
27 top: 352px;
28 left: 43px;
29 width: 140px;
30 height: 100px;
31 border: 2px solid blue;
32 }
33 #overflow {
34 width: 200px;
35 margin-left: 12px;
36 margin-top: -12px;
37 }
38 </style>
39 </head>
40 <body>
41 <div id="page">
42 <div id="border1">X X X X X X X X X X X X X X X</div>
43 <div id="region1" class="region"></div>
44 <div id="border2">X X X X X X X X X X X X X X X X X X X X</div>
45 <div id="region2" class="region"></div>
46 <div id="overflow">X X X X X X X</div>
47 </div>
48 <p style="margin-top: 22px;">Requires Ahem font. There are two regions (10px padding is applied to the regions) with two ractangle shape-insides, the shape- insides are smaller and have top and left offsets inside the content box. The re ctangular shapes boundaries are represented by the blue rectangles. The inline c ontent should flow inside the blue ractangles, the overflow should be pushed dow n below the last region's content box, which means the overflow should start jus t below the last regions's shape, 10px above the green border box.</p>
49 <p>Bug <a href="http://webkit.org/b/117599">117599</a>[CSS Shapes][CSS Regio ns] Respect bottom positioned shapes and content adjustment inside shapes</p>
50 </body>
51 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698