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

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

Issue 216553010: Remove carriage returns from LayoutTests (04) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
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.testRunner) { 4 if (window.testRunner) {
5 testRunner.waitUntilDone(); 5 testRunner.waitUntilDone();
6 testRunner.dumpAsText(); 6 testRunner.dumpAsText();
7 } 7 }
8 8
9 function crash() { 9 function crash() {
10 document.designMode = "on"; 10 document.designMode = "on";
(...skipping 11 matching lines...) Expand all
22 } 22 }
23 }, true); 23 }, true);
24 try { 24 try {
25 range.insertNode(document.createTextNode("")); 25 range.insertNode(document.createTextNode(""));
26 } catch(e) { } 26 } catch(e) { }
27 } 27 }
28 28
29 window.onload = crash; 29 window.onload = crash;
30 </script> 30 </script>
31 </html> 31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698