OLD | NEW |
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 Loading... |
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> |
OLD | NEW |