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

Unified Diff: LayoutTests/editing/selection/blockquote-crash.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/selection/blockquote-crash.html
diff --git a/LayoutTests/editing/selection/blockquote-crash.html b/LayoutTests/editing/selection/blockquote-crash.html
deleted file mode 100644
index f1435f0f0b135768c8c25b0f7477a31c0942fc58..0000000000000000000000000000000000000000
--- a/LayoutTests/editing/selection/blockquote-crash.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<html>
- <head>
- <style>
- blockquote {
- color: blue;
- border-left: 2px solid blue;
- padding-left: 5px;
- margin: 0px;
- }
- </style>
- <script>
- function test()
- {
- if (window.testRunner)
- testRunner.dumpAsText();
-
- var qt = document.getElementById('qt');
- var sel = window.getSelection();
- sel.setPosition(qt, 0);
- sel.modify("extend", "forward", "line");
- document.execCommand("InsertNewlineInQuotedContent");
-
- document.write("<xmp>" + document.body.innerHTML + "</xmp>");
- }
- </script>
- </head>
- <body contenteditable onload="test()">
- <div>This test should not crash</div>
- <blockquote type="cite" id="qt">triple click me! then hit enter
- <blockquote type="cite"><div style="min-height: 14px;"></div></blockquote>
- </blockquote>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698