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

Side by Side Diff: LayoutTests/accessibility/event-on-deleted-iframe-causes-crash.html

Issue 1153723008: Don't create an AXScrollView for a FrameView that's about to be deleted. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « no previous file | LayoutTests/accessibility/event-on-deleted-iframe-causes-crash-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <div contenteditable="true">
2 <span id="item1">Lorem
3 <br/>
4 more Lorem!
5 <blockquote>
6 ipsum
7 <span id="item2">
8 </div>
9
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText();
13
14 var s = window.getSelection();
15 var p1 = document.getElementById("item1");
16 var p2 = document.getElementById("item2");
17 s.setBaseAndExtent(p1, 0, p2);
18 document.execCommand("Indent");
19 var frame = window.parent.document.querySelector('iframe');
20 if (frame)
21 frame.remove();
22 </script>
23 <script>
je_julie(Not used) 2015/06/04 01:48:43 nit; In the beginning, I didn't understand how it
dmazzoni 2015/06/04 03:29:40 Yes, I'll add a comment! The test is very weird.
24 var iframe = document.createElement('iframe');
25 iframe.src = window.location;
26 document.body.appendChild(iframe);
27 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/accessibility/event-on-deleted-iframe-causes-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698