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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/editing/execCommand/justify-right-in-effect-crash.html
diff --git a/third_party/WebKit/LayoutTests/editing/execCommand/justify-center-empty-list-crash.html b/third_party/WebKit/LayoutTests/editing/execCommand/justify-right-in-effect-crash.html
similarity index 58%
copy from third_party/WebKit/LayoutTests/editing/execCommand/justify-center-empty-list-crash.html
copy to third_party/WebKit/LayoutTests/editing/execCommand/justify-right-in-effect-crash.html
index 760f54d28b5350573dac0173529857542da1e485..1a87a6db111c4b257d8f2e5d1b23456684410206 100644
--- a/third_party/WebKit/LayoutTests/editing/execCommand/justify-center-empty-list-crash.html
+++ b/third_party/WebKit/LayoutTests/editing/execCommand/justify-right-in-effect-crash.html
@@ -5,19 +5,20 @@
if (window.testRunner)
testRunner.dumpAsText();
-onload = function() {
+window.onload= function() {
document.designMode = "on";
document.execCommand("SelectAll");
- document.execCommand("JustifyCenter");
+ document.execCommand("JustifyRight");
document.body.textContent = 'PASS if Blink doesn\'t crash.';
};
</script>
-</head>
-<body>
-<ul style="height: 20px;"></ul>
-<div>
- <div></div>
- <a target="foo">more</a>
-</div>
+<style>
+.CLASS3 {
+ -webkit-text-decorations-in-effect:underline;
+}
+</style>
+<body class="CLASS3">
+nls
+<hr>
</body>
</html>
« 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