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

Unified Diff: LayoutTests/editing/inserting/6609479-1.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/6609479-1.html
diff --git a/LayoutTests/editing/inserting/6609479-1.html b/LayoutTests/editing/inserting/6609479-1.html
deleted file mode 100644
index 4d4d2acc2ef54beb02d9b1baa939f3bd3fc6d952..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/inserting/6609479-1.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<html>
- <head>
- <script>
- function log(msg)
- {
- document.getElementById('console').appendChild(document.createTextNode(msg + '\n'));
- }
-
- function test()
- {
- if (window.testRunner)
- testRunner.dumpAsText();
- var td = document.getElementById("td");
- var text = td.firstChild;
- var s = window.getSelection();
- s.setBaseAndExtent(text, 3, text, 4);
- document.execCommand("InsertHTML", true, "bar");
- var tables = document.getElementsByTagName("table");
- if (tables.length == 1)
- log("Test Passed");
- else
- log ("Test Failed");
- }
- </script>
- </head>
- <body onload="test()">
- <p>This tests that inserting html inside a table still works and doesn't break the table apart, even when in quoted content.</p>
- <div contenteditable="true">
- <blockquote type="cite"><table border="1" id="tb"><tr><td id="td">foo baz</td></tr></table></blockquote>
- </div>
- <pre id="console"></pre>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698