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

Side by Side Diff: third_party/WebKit/LayoutTests/editing/execCommand/justify-right-in-effect-crash.html

Issue 1522063002: Allow -webkit-text-decorations-in-effect preservation during para move. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | third_party/WebKit/LayoutTests/editing/execCommand/justify-right-in-effect-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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script> 4 <script>
5 if (window.testRunner) 5 if (window.testRunner)
6 testRunner.dumpAsText(); 6 testRunner.dumpAsText();
7 7
8 onload = function() { 8 window.onload= function() {
9 document.designMode = "on"; 9 document.designMode = "on";
10 document.execCommand("SelectAll"); 10 document.execCommand("SelectAll");
11 document.execCommand("JustifyCenter"); 11 document.execCommand("JustifyRight");
12 document.body.textContent = 'PASS if Blink doesn\'t crash.'; 12 document.body.textContent = 'PASS if Blink doesn\'t crash.';
13 }; 13 };
14 </script> 14 </script>
15 </head> 15 <style>
16 <body> 16 .CLASS3 {
17 <ul style="height: 20px;"></ul> 17 -webkit-text-decorations-in-effect:underline;
18 <div> 18 }
19 <div></div> 19 </style>
20 <a target="foo">more</a> 20 <body class="CLASS3">
21 </div> 21 nls
22 <hr>
22 </body> 23 </body>
23 </html> 24 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/editing/execCommand/justify-right-in-effect-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698