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

Side by Side Diff: LayoutTests/fast/regions/shape-inside/shape-inside-on-regions-inline-content-polygon-with-adjustment-expected.html

Issue 60873002: Removing the -webkit prefix from CSS Regions-Shapes tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script> 4 <script>
5 if (window.internals) 5 if (window.internals)
6 window.internals.settings.setCSSExclusionsEnabled(true); 6 window.internals.settings.setCSSExclusionsEnabled(true);
7 </script> 7 </script>
8 <style> 8 <style>
9 #content { 9 #content {
10 font: 13px Ahem, sans-serif; 10 font: 13px Ahem, sans-serif;
11 line-height: 15px; 11 line-height: 15px;
12 } 12 }
13 .region1 { 13 .region1 {
14 width: 200px; 14 width: 200px;
15 height: 200px; 15 height: 200px;
16 border: 5px solid black; 16 border: 5px solid black;
17 border-top: 10px solid green; 17 border-top: 10px solid green;
18 border-bottom: 15px solid yellow; 18 border-bottom: 15px solid yellow;
19 margin-top: 10px; 19 margin-top: 10px;
20 } 20 }
21 .region2 { 21 .region2 {
22 width: 400px; 22 width: 400px;
23 height: 400px; 23 height: 400px;
24 border: 15px solid black; 24 border: 15px solid black;
25 margin-top: 10px; 25 margin-top: 10px;
26 border-top: 30px solid green; 26 border-top: 30px solid green;
27 -webkit-shape-inside: polygon(30px 30px, 380px 380px, 10px 380px); 27 shape-inside: polygon(30px 30px, 380px 380px, 10px 380px);
28 } 28 }
29 </style> 29 </style>
30 </head> 30 </head>
31 <body> 31 <body>
32 <div id="content"> 32 <div id="content">
33 <div class="region1"> 33 <div class="region1">
34 The Culture and the Idiran Empire are at war in a galaxy-spanning confli ct. Horza, a mercenary capable of altering his appearance at will (a Changer), i s 34 The Culture and the Idiran Empire are at war in a galaxy-spanning confli ct. Horza, a mercenary capable of altering his appearance at will (a Changer), i s
35 </div> 35 </div>
36 <div class="region2"> 36 <div class="region2">
37 assigned the task of retrieving a dispossessed Culture Mind by his Idira n handlers. The Mind, while fleeing attacking Idirans who consider its existence an abomination, has taken... 37 assigned the task of retrieving a dispossessed Culture Mind by his Idira n handlers. The Mind, while fleeing attacking Idirans who consider its existence an abomination, has taken...
38 </div> 38 </div>
39 </div> 39 </div>
40 40
41 <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> 41 <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>
42 <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> 42 <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>
43 </body> 43 </body>
44 </html> 44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698