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

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: Added square.png and another test 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 <div id=start><br><br></div>
Julien - ping for review 2014/10/08 18:13:27 DOCTYPE!!!!
2 <div id=end></div>
3 <script>
4 if (window.testRunner) {
5 testRunner.waitUntilDone();
6 testRunner.dumpAsText();
7 }
8 // crbug.com/409508: Crashes if we attempt to delete a node in the interval tree of floats while traversing it.
9 var selection = window.getSelection();
10 selection.setBaseAndExtent(start, 0, end, end.childNodes.length);
11 if (window.testRunner)
12 testRunner.notifyDone();
13 </script>
14 <style>
15 div,br {
16 shape-outside: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/20 00/svg'></svg>");
17 float: left;
18 }
19 </style>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698