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

Side by Side Diff: LayoutTests/fast/regions/shape-inside/shape-inside-on-regions-inline-content-overflow-multiple-shapes.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 #rectangle { 9 #rectangle {
10 font: 20px Ahem, sans-serif; 10 font: 20px Ahem, sans-serif;
11 -webkit-font-smoothing: none; 11 -webkit-font-smoothing: none;
12 line-height: 20px; 12 line-height: 20px;
13 -webkit-flow-into: flow; 13 -webkit-flow-into: flow;
14 } 14 }
15 .region { 15 .region {
16 -webkit-flow-from: flow; 16 -webkit-flow-from: flow;
17 width: 200px; 17 width: 200px;
18 height: 200px; 18 height: 200px;
19 border: 2px solid green; 19 border: 2px solid green;
20 } 20 }
21 #region1 { -webkit-shape-inside: rectangle(50px, 50px, 100px, 100px); } 21 #region1 { shape-inside: rectangle(50px, 50px, 100px, 100px); }
22 #region2 { 22 #region2 {
23 margin-top: 10px; 23 margin-top: 10px;
24 -webkit-shape-inside: rectangle(25px, 50px, 140px, 100px); 24 shape-inside: rectangle(25px, 50px, 140px, 100px);
25 } 25 }
26 #border1 { 26 #border1 {
27 position: absolute; 27 position: absolute;
28 top: 58px; 28 top: 58px;
29 left: 58px; 29 left: 58px;
30 width: 100px; 30 width: 100px;
31 height: 100px; 31 height: 100px;
32 border: 2px solid blue; 32 border: 2px solid blue;
33 } 33 }
34 #border2 { 34 #border2 {
(...skipping 14 matching lines...) Expand all
49 <div id="page"> 49 <div id="page">
50 <div id="border1"></div> 50 <div id="border1"></div>
51 <div id="region1" class="region"></div> 51 <div id="region1" class="region"></div>
52 <div id="border2"></div> 52 <div id="border2"></div>
53 <div id="region2" class="region"></div> 53 <div id="region2" class="region"></div>
54 </div> 54 </div>
55 <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> 55 <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>
56 <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> 56 <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>
57 </body> 57 </body>
58 </html> 58 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698