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

Side by Side Diff: LayoutTests/fast/regions/shape-inside/shape-inside-on-regions-block-content-polygon-with-adjustment.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 <script>
5 if (window.internals)
6 window.internals.settings.setCSSExclusionsEnabled(true);
7 </script>
8 <style>
9 #content {
10 -webkit-flow-into: flow;
11 font: 13px Ahem, sans-serif;
12 line-height: 15px;
13 }
14 .region1 {
15 -webkit-flow-from: flow;
16 width: 200px;
17 height: 200px;
18 border: 5px solid black;
19 border-top: 10px solid green;
20 border-bottom: 15px solid yellow;
21 margin-top: 10px;
22 }
23 .region2 {
24 -webkit-flow-from: flow;
25 width: 400px;
26 height: 400px;
27 border: 15px solid black;
28 border-top: 30px solid green;
29 border-left: 0px; /* FIXME: Content gets extra left offset when there i s left-border on the content box: http://webkit.org/b/117573 */
30 margin-top: 10px;
31 -webkit-shape-inside: polygon(30px 30px, 380px 380px, 10px 380px);
32 }
33 </style>
34 </head>
35 <body>
36 <div class="region1"></div>
37 <div class="region2"></div>
38
39 <div id="content">
40 The Culture and <p>the Idiran <p>Empire</p> are </p>at war in a galaxy-spanning conflict. Horza, a mercenary <p>capable of altering his appearance</p>at will <p >(a Changer),</p> is assigned the task of retrieving a dispossessed Culture Mind by his Idiran handlers.
41 </div>
42
43 <p style="margin-top: 30px;">Requires Ahem font. There are two regions, there is a polygon shape-inside on the second region. The shape is positioned and it for ces the content to be adjusted (pushed down from the top of the shape) inside th e shape. The content should fill out the first region and it should fill out the polygon shape on the second region.</p>
44 <p>Bug <a href="http://webkit.org/b/117599">117599</a>[CSS Shapes][CSS Regions] Respect bottom positioned shapes and content adjustment inside shapes</p>
45
46 </body>
47 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698