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

Unified Diff: third_party/WebKit/LayoutTests/editing/style/remove-styled-element-with-style-span.html

Issue 2685793002: Remove Apple-style-span CSS class support (Closed)
Patch Set: Update test cases Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/editing/style/remove-styled-element-with-style-span.html
diff --git a/third_party/WebKit/LayoutTests/editing/style/remove-styled-element-with-style-span.html b/third_party/WebKit/LayoutTests/editing/style/remove-styled-element-with-style-span.html
deleted file mode 100644
index 67d48de60fa8661e25e229eba3dfd3cc3495c1b3..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/editing/style/remove-styled-element-with-style-span.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-<div id="test" contenteditable>hello <em class="Apple-style-span">world</em> WebKit</div>
-<script src="../../resources/dump-as-markup.js"></script>
-<script>
-
-Markup.description('This test ensures WebKit removes implicitly styled elements even if they had class="Apple-style-span".'
-+ ' There should be no span below.');
-
-var test = document.getElementById('test');
-test.focus();
-document.execCommand('SelectAll', false, null);
-document.execCommand('Italic', false, null);
-
-Markup.dump(test);
-
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698