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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-first-fit-001.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 <style> 4 <style>
9 .shape-inside { 5 .shape-inside {
10 position: relative; 6 position: relative;
11 width: 200px; 7 width: 200px;
12 height: 200px; 8 height: 200px;
13 -webkit-shape-inside: polygon(0px 0px, 200px 200px, 0px 200px); 9 -webkit-shape-inside: polygon(0px 0px, 200px 200px, 0px 200px);
14 font: 50px/1 Ahem, sans-serif; 10 font: 50px/1 Ahem, sans-serif;
15 color: green; 11 color: green;
16 } 12 }
17 13
(...skipping 30 matching lines...) Expand all
48 44
49 <div class="shape-inside" style="-webkit-writing-mode: vertical-lr"> 45 <div class="shape-inside" style="-webkit-writing-mode: vertical-lr">
50 <svg class="shape-outline" xmlns="http://www.w3.org/2000/svg"> 46 <svg class="shape-outline" xmlns="http://www.w3.org/2000/svg">
51 <polygon points="0,0 200,200 0,200" stroke="blue" fill="none"/> 47 <polygon points="0,0 200,200 0,200" stroke="blue" fill="none"/>
52 </svg> 48 </svg>
53 XXX <span class="blue">XX</span> X 49 XXX <span class="blue">XX</span> X
54 </div> 50 </div>
55 <p>Writing-mode is vertical-lr.</p> 51 <p>Writing-mode is vertical-lr.</p>
56 </body> 52 </body>
57 </html> 53 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698