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

Side by Side Diff: LayoutTests/http/tests/shapes/shape-outside-dynamic-shape-image-threshold.html

Issue 635533003: Don't delete nodes in the float interval tree while traversing it. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add correct png! Created 6 years, 2 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 window.onload = function() { 5 window.onload = function() {
6 // fetch offsetTop to force a layout 6 // fetch offsetTop to force a layout
7 document.body.offsetTop; 7 document.body.offsetTop;
8 8
9 var el = document.querySelector('#add-shape-image-threshold .shape'); 9 var el = document.querySelector('#add-shape-image-threshold .shape');
10 el.style.setProperty('shape-image-threshold', 0.25); 10 el.style.setProperty('shape-image-threshold', 0.25);
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 <p>Setting shape-image-threshold with no prior entry</p> 67 <p>Setting shape-image-threshold with no prior entry</p>
68 <div id='add-shape-image-threshold' class='container'><div class='shape'></d iv>x x x x x x x x x x</div> 68 <div id='add-shape-image-threshold' class='container'><div class='shape'></d iv>x x x x x x x x x x</div>
69 69
70 <p>Setting shape-image-threshold with a prior entry</p> 70 <p>Setting shape-image-threshold with a prior entry</p>
71 <div id='change-shape-image-threshold' class='container'><div class='shape t hreshold25'></div>x x x x x x x x x x</div> 71 <div id='change-shape-image-threshold' class='container'><div class='shape t hreshold25'></div>x x x x x x x x x x</div>
72 72
73 <p>Removing shape-image-threshold with a prior entry</p> 73 <p>Removing shape-image-threshold with a prior entry</p>
74 <div id='remove-shape-image-threshold' class='container'><div class='shape t hreshold25'></div>x x x x x x x x x x</div> 74 <div id='remove-shape-image-threshold' class='container'><div class='shape t hreshold25'></div>x x x x x x x x x x</div>
75 </body> 75 </body>
76 </html> 76 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698