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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-dynamic-nested.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> 4 <script>
5 if (window.internals)
6 window.internals.settings.setCSSExclusionsEnabled(true);
7 window.onload = function() { 5 window.onload = function() {
8 if (document.body) 6 if (document.body)
9 document.body.offsetTop; 7 document.body.offsetTop;
10 else if (document.documentElement) 8 else if (document.documentElement)
11 document.documentElement.offsetTop; 9 document.documentElement.offsetTop;
12 layoutTest(); 10 layoutTest();
13 } 11 }
14 function layoutTest() { 12 function layoutTest() {
15 var el = document.getElementById('set-inside-shape'); 13 var el = document.getElementById('set-inside-shape');
16 el.setAttribute('class', 'container shape inside'); 14 el.setAttribute('class', 'container shape inside');
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 <p>Setting outside-shape with no prior entry</p> 83 <p>Setting outside-shape with no prior entry</p>
86 <div id='set-outside-shape' class='container'><div>xxxxxxxxxx</div></div> 84 <div id='set-outside-shape' class='container'><div>xxxxxxxxxx</div></div>
87 85
88 <p>Setting outside-shape with a prior entry</p> 86 <p>Setting outside-shape with a prior entry</p>
89 <div id='reset-outside-shape' class='container' class='container shape outsi de-alt'><div>xxxxxxxxxx</div></div> 87 <div id='reset-outside-shape' class='container' class='container shape outsi de-alt'><div>xxxxxxxxxx</div></div>
90 88
91 <p>Removing shape-outside with a prior entry</p> 89 <p>Removing shape-outside with a prior entry</p>
92 <div id='remove-outside-shape' class='container shape outside'><div>xxxxxxxx xx</div></div> 90 <div id='remove-outside-shape' class='container shape outside'><div>xxxxxxxx xx</div></div>
93 </body> 91 </body>
94 </html> 92 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698