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

Unified Diff: third_party/WebKit/LayoutTests/platform/win/editing/execCommand/indent-pre-expected.txt

Issue 1778683005: Drop remaining [LegacyInterfaceTypeChecking] for Selection (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix more tests Created 4 years, 9 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: 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)";

Powered by Google App Engine
This is Rietveld 408576698