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

Side by Side Diff: LayoutTests/fast/text/split-text-crash.xhtml

Issue 9948001: Merge 110487 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1025/
Patch Set: Created 8 years, 8 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/fast/text/split-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
1 <html xmlns="http://www.w3.org/1999/xhtml"> 1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <body></body> 2 <body></body>
3 <script> 3 <script>
4 if (window.layoutTestController) { 4 if (window.layoutTestController) {
5 layoutTestController.waitUntilDone(); 5 layoutTestController.waitUntilDone();
6 layoutTestController.dumpAsText(); 6 layoutTestController.dumpAsText();
7 } 7 }
8 8
9 function crash() { 9 function crash() {
10 document.designMode = "on"; 10 document.designMode = "on";
(...skipping 10 matching lines...) Expand all
21 } 21 }
22 }, true); 22 }, true);
23 try { 23 try {
24 range.insertNode(document.createTextNode("")); 24 range.insertNode(document.createTextNode(""));
25 } catch(e) { } 25 } catch(e) { }
26 } 26 }
27 27
28 window.onload = crash; 28 window.onload = crash;
29 </script> 29 </script>
30 </html> 30 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/text/split-text-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698