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

Unified Diff: LayoutTests/editing/inserting/insert-br-quoted-007.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/inserting/insert-br-quoted-007.html
diff --git a/LayoutTests/editing/inserting/insert-br-quoted-007.html b/LayoutTests/editing/inserting/insert-br-quoted-007.html
deleted file mode 100644
index d162c63b75d0f76bc433e2c685a51275e9611b4b..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/inserting/insert-br-quoted-007.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<html>
-<head>
- <style>
- div { border:1px solid red; }
- blockquote { border:1px solid blue; }
- </style>
- <script>
- function runTest() {
- if (window.testRunner)
- window.testRunner.dumpAsText();
-
- var blankLine = document.getElementById('blankLine');
- var s = window.getSelection();
- s.setPosition(blankLine, 0);
- document.execCommand("InsertNewlineInQuotedContent");
-
- if (blankLine.nextSibling.nodeName == "BR")
- console.log("SUCCESS! newline inserted AFTER quoted content");
- else
- console.log("FAILED! newline inserted BEFORE quoted content");
- }
- </script>
-</head>
-<body onload="runTest()">
- <div><br></div>
- <div contentEditable="true">
- <blockquote type="cite">Line of text</blockquote>
- <blockquote type="cite" id="blankLine"><br></blockquote>
- </div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698