Index: third_party/WebKit/LayoutTests/editing/undo/4063751.html |
diff --git a/third_party/WebKit/LayoutTests/editing/undo/4063751.html b/third_party/WebKit/LayoutTests/editing/undo/4063751.html |
deleted file mode 100644 |
index 54d55dd72cf3118cf292e4401dd88ec5b6a956f5..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/editing/undo/4063751.html |
+++ /dev/null |
@@ -1,42 +0,0 @@ |
-<html> |
-<head> |
- |
-<link rel=stylesheet href="../editingStyle.css" type="text/css"> |
-<script src=../editing.js language="JavaScript" type="text/JavaScript" ></script> |
- |
-<script> |
- |
-function editingTest() { |
- moveSelectionForwardByCharacterCommand(); |
- moveSelectionForwardByCharacterCommand(); |
- |
- var string = "this is a test. "; |
- for (var i = 0; i < string.length; i++) |
- typeCharacterCommand(string[i]); |
- undoCommand(); |
- redoCommand(); |
- undoCommand(); |
- redoCommand(); |
-} |
- |
-</script> |
- |
-<title>Redo Typing can add extra space characters</title> |
-</head> |
-<body> |
- |
-<p>This tests RebalanceWhitespace's ability to Undo.</p> |
-<p>You should see "( this is a test. )", minus the quotes.</p> |
- |
-<hr> |
- |
-<div contenteditable id="root" style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space;"> |
-<div id="test" class="editing">( )</div> |
-</div> |
- |
-<script> |
-runEditingTest(); |
-</script> |
- |
-</body> |
-</html> |