Index: third_party/WebKit/LayoutTests/platform/win/editing/execCommand/indent-pre-expected.txt |
diff --git a/third_party/WebKit/LayoutTests/platform/win/editing/execCommand/indent-pre-expected.txt b/third_party/WebKit/LayoutTests/platform/win/editing/execCommand/indent-pre-expected.txt |
index ff09c29c2f3e8aed532db315f1f08de1104d8cd1..1a6ba66e6aedbad0debaff2a6525e78029033ec2 100644 |
--- a/third_party/WebKit/LayoutTests/platform/win/editing/execCommand/indent-pre-expected.txt |
+++ b/third_party/WebKit/LayoutTests/platform/win/editing/execCommand/indent-pre-expected.txt |
@@ -104,7 +104,7 @@ function setSelection(node) |
var textNode = node.firstChild; |
if (textNode.nodeType != Node.TEXT_NODE) |
throw "Wrong node type: " + textNode; |
- execSetSelectionCommand(textNode, 0, 0); |
+ execSetSelectionCommand(textNode, 0, textNode, 0); |
} |
function verifyTextSelection(startNode, startOffset, endNode, endOffset) |
@@ -161,7 +161,7 @@ setSelection(pre); |
execMoveSelectionForwardByLineCommand(); |
execExtendSelectionForwardByLineCommand(); |
execExtendSelectionForwardByLineCommand(); |
-// FIXME: This is wrong. The pre tags get copied when they shouldn't be. |
+// FIXME: This is wrong. The pre tags get copied when they shouldn't be. |
// See https://bugs.webkit.org/show_bug.cgi?id=42009 |
document.execCommand("indent"); |
document.getElementById("results").innerText = "PASSED (did not crash)"; |