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

Side by Side Diff: LayoutTests/fast/regions/shape-inside/shape-inside-on-regions.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> 2 <html>
3 <head> 3 <head>
4 <script>
5 if (window.internals)
6 window.internals.settings.setCSSExclusionsEnabled(true);
7 </script>
8 <style> 4 <style>
9 #rectangle { 5 #rectangle {
10 font: 16px Ahem, sans-serif; 6 font: 16px Ahem, sans-serif;
11 -webkit-flow-into: rectangle; 7 -webkit-flow-into: rectangle;
12 } 8 }
13 9
14 .region { -webkit-flow-from: rectangle; } 10 .region { -webkit-flow-from: rectangle; }
15 11
16 #region1 { 12 #region1 {
17 width: 180px; 13 width: 180px;
(...skipping 26 matching lines...) Expand all
44 <div id="page"> 40 <div id="page">
45 <div id="region1" class="region"></div> 41 <div id="region1" class="region"></div>
46 <div id="region2" class="region"></div> 42 <div id="region2" class="region"></div>
47 <div id="region3" class="region"></div> 43 <div id="region3" class="region"></div>
48 </div> 44 </div>
49 <p>Requires Ahem font. Two different -shape-inside property are applied to t he first and second region. The third region is a simple region without -shape-i nside. 45 <p>Requires Ahem font. Two different -shape-inside property are applied to t he first and second region. The third region is a simple region without -shape-i nside.
50 The rectangles should flow through the regions and the shape-insides should be applied to the first two regions.</p> 46 The rectangles should flow through the regions and the shape-insides should be applied to the first two regions.</p>
51 <p> Bug <a href="http://webkit.org/b/107880">107880</a>: Regions should resp ect shape-inside</p> 47 <p> Bug <a href="http://webkit.org/b/107880">107880</a>: Regions should resp ect shape-inside</p>
52 </body> 48 </body>
53 </html> 49 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698