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

Unified Diff: LayoutTests/editing/deleting/delete-4038408-fix.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/deleting/delete-4038408-fix.html
diff --git a/LayoutTests/editing/deleting/delete-4038408-fix.html b/LayoutTests/editing/deleting/delete-4038408-fix.html
deleted file mode 100644
index 43e9442d9795b51369db20aae2e9a4ed24de4b12..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/deleting/delete-4038408-fix.html
+++ /dev/null
@@ -1,74 +0,0 @@
-<html>
-<head>
-<style>
-.editing {
- border: 2px solid red;
- padding: 12px;
-}
-blockquote {
- border-left: 2px solid blue;
- padding: 1em;
- margin: 0;
-}
-</style>
-<script src="../../resources/dump-as-markup.js"></script>
-<script src="../editing.js" language="JavaScript" type="text/JavaScript" ></script>
-
-<script>
-
-function editingTest() {
- Markup.description('rdar://problems/4038408&4154187&4125087&4125381, This tests deletion from underneath quoted text:');
-
- Markup.dump('test', 'before deletion');
-
- // Move the caret to the end of #test
- selectAllCommand();
- moveSelectionForwardByCharacterCommand();
-
- // Delete the reply text
- deleteCommand();
- deleteCommand();
- deleteCommand();
- deleteCommand();
- Markup.dump('test', 'after deletion');
-
- insertNewlineInQuotedContentCommand();
- document.execCommand("InsertText", false, "This text should not be quoted.");
-
- Markup.dump('test', 'after insert text');
-}
-
-</script>
-
-<title>Editing Test</title>
-</head>
-<body>
-<p>Radar: <a href="rdar://problems/4038408&4154187&4125087&4125381">rdar://problems/4038408&4154187&4125087&4125381</a>
-Deletion of reply text should not produce reply text style unless the caret is inside the reply text blockquote.</p>
-<p>This tests deletion from underneath quoted text:</p>
-<div contenteditable id="test" class="editing">
-<div><BR class="khtml-block-placeholder"></div>
-<div>
-<blockquote style="color:blue;" type="cite">
-<div>Here is some reply text</div>
-<div>It should have the reply text style</div>
-<div><BR class="khtml-block-placeholder"></div>
-<div><BR class="khtml-block-placeholder"></div>
-<div><BR class="khtml-block-placeholder"></div>
-</blockquote>
-
-
-<div><BR class="khtml-block-placeholder"></div>
-</div>
-
-</div>
-</div>
-
-</div>
-
-<script>
-runEditingTest();
-</script>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698