| Index: third_party/WebKit/LayoutTests/editing/spelling/spelling-insert-html.html
|
| diff --git a/third_party/WebKit/LayoutTests/editing/spelling/spelling-insert-html.html b/third_party/WebKit/LayoutTests/editing/spelling/spelling-insert-html.html
|
| deleted file mode 100644
|
| index df936801404080b5edc616a4a308ef9926f29344..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/editing/spelling/spelling-insert-html.html
|
| +++ /dev/null
|
| @@ -1,41 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<head>
|
| -<script src="../../resources/js-test.js"></script>
|
| -</head>
|
| -<body>
|
| -<pre id="description"></pre>
|
| -<pre id="console"></pre>
|
| -<div id="container">
|
| - <div id="destination" contentEditable>food.</div>
|
| -</div>
|
| -
|
| -<script>
|
| -description("The spellchecker shouldn't mark substrings of words after pasting.");
|
| -
|
| -var sel = window.getSelection();
|
| -var destination = document.getElementById("destination");
|
| -var destinationText = destination.firstChild;
|
| -sel.setBaseAndExtent(destinationText, 2, destinationText, 2);
|
| -
|
| -document.execCommand("InsertHTML", false, "<div>o zz</div><div>fo</div>");
|
| -
|
| -if (window.internals) {
|
| - // The destination node has multiple text nodes,
|
| - // so we need concatenate the marked text.
|
| - var texts = destination.childNodes;
|
| - var markedText = "";
|
| - for (var i = 0; i < texts.length; ++i) {
|
| - var marked = internals.markerRangeForNode(texts[i], "spelling", 0);
|
| - if (marked)
|
| - markedText += marked.toString()
|
| - }
|
| -
|
| - // The first "foo" isn't checked because it crosses the pasted and base html.
|
| - // See http://webkit.org/b/66450.
|
| - shouldBeEqualToString("markedText", "zz");
|
| -}
|
| -
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|