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

Side by Side Diff: LayoutTests/editing/inserting/insert-html-crash.html

Issue 10407103: Merge 116545 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1132/
Patch Set: Created 8 years, 7 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/insert-html-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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <script src="../../fast/js/resources/js-test-pre.js"></script> 3 <script src="../../fast/js/resources/js-test-pre.js"></script>
4 <script> 4 <script>
5 window.jsTestIsAsync = true; 5 window.jsTestIsAsync = true;
6 6
7 if (window.layoutTestController) 7 if (window.layoutTestController)
8 layoutTestController.waitUntilDone(); 8 layoutTestController.waitUntilDone();
9 9
10 document.addEventListener("DOMCharacterDataModified", function() { 10 document.addEventListener("DOMCharacterDataModified", function() {
11 document.body.innerHTML = "PASS. WebKit didn't crash."; 11 document.body.innerHTML = "PASS. WebKit didn't crash.";
12 gc(); 12 gc();
13 finishJSTest(); 13 finishJSTest();
14 }, true); 14 }, true);
15 15
16 document.write("A<br>"); 16 document.write("A<br>");
17 document.designMode = "on"; 17 document.designMode = "on";
18 document.execCommand("SelectAll"); 18 document.execCommand("SelectAll");
19 document.execCommand("InsertHTML", false, 4); 19 document.execCommand("InsertHTML", false, 4);
20 </script> 20 </script>
21 <script src="../../fast/js/resources/js-test-post.js"></script> 21 <script src="../../fast/js/resources/js-test-post.js"></script>
22 </html> 22 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/editing/inserting/insert-html-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698