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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-rectilinear-polygon-004.html

Issue 20806004: Remove Explicit Shapes Enablement in Tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Enabled by default, no need to call internals Created 7 years, 4 months 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
9 <!-- 4 <!--
10 Test test creates a rectilinear polygon with this shape: 5 Test test creates a rectilinear polygon with this shape:
11 XXXX 6 XXXX
12 XXXX 7 XXXX
13 XXXX 8 XXXX
14 --> 9 -->
15 10
16 <style id="stylesheet"> 11 <style id="stylesheet">
17 #shape-inside, #shape-outline { 12 #shape-inside, #shape-outline {
18 position: absolute; 13 position: absolute;
(...skipping 27 matching lines...) Expand all
46 <body> 41 <body>
47 <div id="shape-inside">XXXX XXXX XXXX</div> 42 <div id="shape-inside">XXXX XXXX XXXX</div>
48 <svg id="shape-outline" xmlns="http://www.w3.org/2000/svg"> 43 <svg id="shape-outline" xmlns="http://www.w3.org/2000/svg">
49 <polygon points="200,0 400,0 400,50 300,50 300,100 200,100 200,150 0,150 0 ,100 100,100 100,50 200,50"/> 44 <polygon points="200,0 400,0 400,50 300,50 300,100 200,100 200,150 0,150 0 ,100 100,100 100,50 200,50"/>
50 </svg> 45 </svg>
51 <p id="informative-text"> 46 <p id="informative-text">
52 This test requires the Ahem font. It creates a rectilinear polygonal shape -inside and a 47 This test requires the Ahem font. It creates a rectilinear polygonal shape -inside and a
53 matching stroked SVG polygon. The content should just fill the shape with solid green.</p> 48 matching stroked SVG polygon. The content should just fill the shape with solid green.</p>
54 </html> 49 </html>
55 50
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698