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

Unified Diff: LayoutTests/editing/deleting/delete-blockquote-large-offsets.html

Issue 6591053: Revert 79909 - Merge 79536... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/648/
Patch Set: Created 9 years, 10 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
« no previous file with comments | « no previous file | LayoutTests/editing/deleting/delete-blockquote-large-offsets-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/editing/deleting/delete-blockquote-large-offsets.html
===================================================================
--- LayoutTests/editing/deleting/delete-blockquote-large-offsets.html (revision 79921)
+++ LayoutTests/editing/deleting/delete-blockquote-large-offsets.html (working copy)
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-This tests setting caret inside a blockquote with a large offset and running execCommand('Delete'). WebKit should not crash and you should see PASS below:
-<div id="test" contentEditable="true">
-<blockquote type="cite" id="blockquote" style="font-size: 0px; -webkit-min-logical-height: 4px;"><br></blockquote>
-</div>
-<script>
-if (window.layoutTestController)
- layoutTestController.dumpAsText();
-
-window.getSelection().setPosition(document.getElementById('blockquote'), 2000000000);
-document.execCommand("Delete");
-
-var test = document.getElementById('test');
-if (test.innerHTML == '' || test.innerHTML == '<br>') // Allow a placeholder
- document.writeln('PASS');
-else
- document.writeln('FAIL: expected empty line but got ' + test.innerHTML.replace('<', '&lt;'));
-
-</script>
-</body>
-</html>
« no previous file with comments | « no previous file | LayoutTests/editing/deleting/delete-blockquote-large-offsets-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698