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

Unified Diff: third_party/WebKit/LayoutTests/editing/pasteboard/paste-with-redundant-style.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/pasteboard/paste-with-redundant-style.html
diff --git a/third_party/WebKit/LayoutTests/editing/pasteboard/paste-with-redundant-style.html b/third_party/WebKit/LayoutTests/editing/pasteboard/paste-with-redundant-style.html
deleted file mode 100644
index 0e9937afe0d7332d9fd8a672ea352be933bc0fd3..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/editing/pasteboard/paste-with-redundant-style.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-em { text-decoration: underline; font-style: none; }
-</style>
-</head>
-<body>
-<div id="test" contenteditable><b style="font-style: italic;"><br></b></div>
-<script src="../../resources/dump-as-markup.js"></script>
-<script>
-
-document.getElementById('test').focus();
-document.execCommand('insertHTML', false,
- '<em style="font-style: none; text-decoration: underline; font-weight: bold;"><span style="color: black;">hello world</span></em><br>'
- + '<span style="font-weight: bold;"><span class="Apple-style-span" style="font-weight: bold;">WebKit</span></span><br>'
- + '<em><span style="font-style: italic;">rocks</span></em>');
-
-Markup.description('This tests pasting content with redundant inline style.\n'
- + 'You should not see any inline styles other than font-weight: bold and there should be exactly one span around WebKit.');
-Markup.dump('test');
-
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698