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

Side by Side Diff: LayoutTests/fast/regions/shape-inside/shape-inside-recursive-layout.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 lang="en"> 2 <html lang="en">
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 .region, .content { 9 .region, .content {
10 font: 50px/1 Ahem, sans-serif; 10 font: 50px/1 Ahem, sans-serif;
11 } 11 }
12 .region { 12 .region {
13 width: 100px; 13 width: 100px;
14 height: 100px; 14 height: 100px;
15 -webkit-shape-inside: rectangle(0, 0, 100%, 100%); 15 shape-inside: rectangle(0, 0, 100%, 100%);
16 } 16 }
17 .content * { 17 .content * {
18 color: green; 18 color: green;
19 width: 100px; 19 width: 100px;
20 overflow-wrap: break-word; 20 overflow-wrap: break-word;
21 } 21 }
22 .region.inline-block { -webkit-flow-from: inline-block-flow; } 22 .region.inline-block { -webkit-flow-from: inline-block-flow; }
23 .content.inline-block { -webkit-flow-into: inline-block-flow; } 23 .content.inline-block { -webkit-flow-into: inline-block-flow; }
24 24
25 .region.float { -webkit-flow-from: float-flow; } 25 .region.float { -webkit-flow-from: float-flow; }
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 <div>xxxx</div> 125 <div>xxxx</div>
126 </div> 126 </div>
127 127
128 <p>Grid</p> 128 <p>Grid</p>
129 <div class='region grid'></div> 129 <div class='region grid'></div>
130 <div class='content grid'> 130 <div class='content grid'>
131 <div>xxxx</div> 131 <div>xxxx</div>
132 </div> 132 </div>
133 </body> 133 </body>
134 </html> 134 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698