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

Unified Diff: LayoutTests/editing/execCommand/break-non-editable-blockquote.html

Issue 13954003: Remove mail blockquote special case handling. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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: LayoutTests/editing/execCommand/break-non-editable-blockquote.html
diff --git a/LayoutTests/editing/execCommand/break-non-editable-blockquote.html b/LayoutTests/editing/execCommand/break-non-editable-blockquote.html
deleted file mode 100644
index e4ab1b0e3f2bf3ee353d2049c15639d83573960f..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/execCommand/break-non-editable-blockquote.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-<blockquote type="cite">
-<div id="test" contenteditable><blockquote type="cite">hello world</blockquote></div>
-</blockquote>
-<script src="../../resources/dump-as-markup.js"></script>
-<script>
-
-var test = document.getElementById('test');
-window.getSelection().setPosition(test.firstChild.firstChild, 5);
-document.execCommand('InsertNewlineInQuotedContent', false, null);
-
-Markup.description('This test ensures WebKit properly inserts newline in quoted contents, which is enclosed by a non-editable blockquote.');
-Markup.dump(test);
-
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698