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

Side by Side Diff: LayoutTests/editing/execCommand/apply-style-text-decoration-crash.html

Issue 3389031: Merge 67967 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/517/
Patch Set: Created 10 years, 3 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/apply-style-text-decoration-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> 1 <html>
2 <script> 2 <script>
3 function runTest() 3 function runTest()
4 { 4 {
5 if (window.layoutTestController) 5 if (window.layoutTestController)
6 layoutTestController.dumpAsText(); 6 layoutTestController.dumpAsText();
7 7
8 window.getSelection().setBaseAndExtent(start, 0, null, 0); 8 window.getSelection().setBaseAndExtent(start, 0, null, 0);
9 document.execCommand("Indent"); 9 document.execCommand("Indent");
10 document.getElementById("result").innerHTML = "PASS"; 10 document.getElementById("result").innerHTML = "PASS";
11 } 11 }
12 </script> 12 </script>
13 <body onLoad="runTest();"> 13 <body onLoad="runTest();">
14 <p id="result"></p> 14 <p id="result"></p>
15 <div contenteditable="true" id="start" style="text-decoration: none;"> 15 <div contenteditable="true" id="start" style="text-decoration: none;">
16 <hr style="text-align: right;"/> 16 <hr style="text-align: right;"/>
17 </div> 17 </div>
18 </body> 18 </body>
19 </html> 19 </html>
20 20
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/editing/execCommand/apply-style-text-decoration-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698