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

Side by Side Diff: LayoutTests/fast/regions/shape-inside/shape-inside-recursive-layout.html

Issue 60013004: Remove setCSSExclusionsEnabled(true) from CSS Shapes-Regions 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>
5 if (window.internals)
6 window.internals.settings.setCSSExclusionsEnabled(true);
7 </script>
8 <style> 4 <style>
9 .region, .content { 5 .region, .content {
10 font: 50px/1 Ahem, sans-serif; 6 font: 50px/1 Ahem, sans-serif;
11 } 7 }
12 .region { 8 .region {
13 width: 100px; 9 width: 100px;
14 height: 100px; 10 height: 100px;
15 -webkit-shape-inside: rectangle(0, 0, 100%, 100%); 11 -webkit-shape-inside: rectangle(0, 0, 100%, 100%);
16 } 12 }
17 .content * { 13 .content * {
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 <div>xxxx</div> 121 <div>xxxx</div>
126 </div> 122 </div>
127 123
128 <p>Grid</p> 124 <p>Grid</p>
129 <div class='region grid'></div> 125 <div class='region grid'></div>
130 <div class='content grid'> 126 <div class='content grid'>
131 <div>xxxx</div> 127 <div>xxxx</div>
132 </div> 128 </div>
133 </body> 129 </body>
134 </html> 130 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698