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

Unified Diff: LayoutTests/editing/pasteboard/4922709.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/pasteboard/4922709.html
diff --git a/LayoutTests/editing/pasteboard/4922709.html b/LayoutTests/editing/pasteboard/4922709.html
deleted file mode 100644
index 88f9f74d49a391af0d0f9169e17d64c0180b6cc9..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/pasteboard/4922709.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<style>
-blockquote {
- border-left: 2px solid blue;
- margin: 0;
- padding-left: 10px;
- color: blue;
-}
-</style>
-<div id="description">This tests copying/pasting less than a paragraph of quoted content. It should appear quoted.</div>
-<div id="edit" contenteditable="true">
-<br>
-<br>
-<div>On Tuesday, Dave wrote:</div>
-<div><br></div>
-<blockquote id="blockquote" type="cite">Hello World</blockquote>
-</div>
-
-<script>
-if (window.testRunner)
- window.testRunner.dumpAsText();
-blockquote = document.getElementById("blockquote");
-text = blockquote.firstChild;
-sel = window.getSelection();
-sel.setBaseAndExtent(text, 0, text, text.length);
-document.execCommand("Copy");
-edit = document.getElementById("edit");
-sel.setPosition(edit, 0);
-document.execCommand("Paste");
-if (window.testRunner)
- document.body.innerText = document.getElementById("description").innerText + "\n\n" + document.getElementById("edit").innerHTML;
-</script>

Powered by Google App Engine
This is Rietveld 408576698