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

Side by Side Diff: LayoutTests/editing/inserting/delete-insignificant-text-crash.html

Issue 9565017: Revert 109368 - Merge 107761 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/963/
Patch Set: Created 8 years, 9 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/editing/inserting/delete-insignificant-text-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 <!DOCTYPE html>
2 <html>
3 <body>
4 <p>This tests deleting a node in DOMCharacterDataModified doesn't result in a cr ash.</p>
5 <div id="test" contenteditable></div>
6 <script>
7
8 if (window.layoutTestController)
9 layoutTestController.dumpAsText();
10
11 var test = document.getElementById('test');
12 test.appendChild(document.createTextNode('a '));
13 test.appendChild(document.createTextNode(' '));
14 test.appendChild(document.createTextNode('b'));
15 test.appendChild(document.createTextNode(' '));
16 getSelection().setPosition(test.firstChild.nextSibling, 0);
17 document.body.addEventListener('DOMCharacterDataModified', function () {
18 test.removeChild(test.firstChild.nextSibling);
19 if (window.GCController)
20 GCController.collect();
21 }, false);
22 document.execCommand("InsertText", false, "c");
23
24 test.textContent = '';
25 document.writeln('PASS');
26
27 </script>
28 </body>
29 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/editing/inserting/delete-insignificant-text-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698