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

Side by Side Diff: LayoutTests/fast/shapes/crash-caused-by-dirtying-a-shape-while-computing-it-requires-a-long-filename-to-crash.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
(Empty)
1 <!doctype HTML>
2 <div id=start><br><br></div>
3 <div id=end></div>
4 <script>
5 if (window.testRunner) {
6 testRunner.waitUntilDone();
7 testRunner.dumpAsText();
8 }
9 // crbug.com/409508: Crashes if we attempt to delete a node in the interval tree of floats while traversing it.
10 var selection = window.getSelection();
11 selection.setBaseAndExtent(start, 0, end, end.childNodes.length);
12 if (window.testRunner)
13 testRunner.notifyDone();
14 </script>
15 <style>
16 div,br {
17 shape-outside: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/20 00/svg'></svg>");
18 float: left;
19 }
20 </style>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698