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

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

Issue 217003006: Remove carriage returns from LayoutTests (01) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix caret-and-focus-ring 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <script> 3 <script>
4 if (window.testRunner) 4 if (window.testRunner)
5 testRunner.dumpAsText(); 5 testRunner.dumpAsText();
6 6
7 function handler() { 7 function handler() {
8 var element = event.srcElement; 8 var element = event.srcElement;
9 document.execCommand('Undo', false, false); 9 document.execCommand('Undo', false, false);
10 element.parentNode.removeChild(element); 10 element.parentNode.removeChild(element);
(...skipping 14 matching lines...) Expand all
25 document.designMode = "on"; 25 document.designMode = "on";
26 document.execCommand('JustifyRight', false, false); 26 document.execCommand('JustifyRight', false, false);
27 document.execCommand('InsertHorizontalRule', false, ''); 27 document.execCommand('InsertHorizontalRule', false, '');
28 document.documentElement.innerHTML = "PASS. WebKit didn't crash."; 28 document.documentElement.innerHTML = "PASS. WebKit didn't crash.";
29 }; 29 };
30 </script> 30 </script>
31 <ruby id="ruby"> 31 <ruby id="ruby">
32 <a>A</a> 32 <a>A</a>
33 </ruby> 33 </ruby>
34 </html> 34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698