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

Side by Side Diff: LayoutTests/editing/execCommand/crash-line-break-after-outdent.html

Issue 7550046: Merge 91781 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/782/
Patch Set: Created 9 years, 4 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/execCommand/crash-line-break-after-outdent-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 <head> 1 <head>
2 <script> 2 <script>
3 if (window.layoutTestController) 3 if (window.layoutTestController)
4 layoutTestController.dumpAsText(); 4 layoutTestController.dumpAsText();
5 5
6 function f() { 6 function f() {
7 document.designMode="on"; 7 document.designMode="on";
8 document.execCommand("SelectAll"); 8 document.execCommand("SelectAll");
9 document.execCommand("InsertImage",false); 9 document.execCommand("InsertImage",false);
10 document.execCommand("InsertImage",false); 10 document.execCommand("InsertImage",false);
11 document.execCommand("Indent"); 11 document.execCommand("Indent");
12 document.execCommand("insertunorderedlist",false); 12 document.execCommand("insertunorderedlist",false);
13 document.execCommand("InsertUnorderedList",false); 13 document.execCommand("InsertUnorderedList",false);
14 document.execCommand("Bold"); 14 document.execCommand("Bold");
15 document.execCommand("InsertLineBreak"); 15 document.execCommand("InsertLineBreak");
16 document.execCommand("insertunorderedlist"); 16 document.execCommand("insertunorderedlist");
17 document.execCommand("insertimage",false); 17 document.execCommand("insertimage",false);
18 document.execCommand("insertparagraph",false); 18 document.execCommand("insertparagraph",false);
19 document.execCommand("insertunorderedlist"); 19 document.execCommand("insertunorderedlist");
20 document.execCommand("InsertUnorderedList"); 20 document.execCommand("InsertUnorderedList");
21 document.execCommand("Outdent"); 21 document.execCommand("Outdent");
22 document.write("<p>Test for bug <a href=\"https://bugs.webkit.org/show_bug.c gi?id=60778\">REGRESSION (83075): Crash in line break after outdent</p>"); 22 document.write("<p>Test for bug <a href=\"https://bugs.webkit.org/show_bug.c gi?id=60778\">REGRESSION (83075): Crash in line break after outdent</p>");
23 document.write("<p>This test PASSED!</p>"); 23 document.write("<p>This test PASSED!</p>");
24 } 24 }
25 </script> 25 </script>
26 </head> 26 </head>
27 <body onload='f();'> 27 <body onload='f();'>
28 <pre id="x">x</pre> 28 <pre id="x">x</pre>
29 </body> 29 </body>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/editing/execCommand/crash-line-break-after-outdent-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698