summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/editing/text-iterator/findString-selection-disabled.html
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/WebKit/LayoutTests/editing/text-iterator/findString-selection-disabled.html')
-rw-r--r--third_party/WebKit/LayoutTests/editing/text-iterator/findString-selection-disabled.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/third_party/WebKit/LayoutTests/editing/text-iterator/findString-selection-disabled.html b/third_party/WebKit/LayoutTests/editing/text-iterator/findString-selection-disabled.html
index 05d3a91..aa07d9c 100644
--- a/third_party/WebKit/LayoutTests/editing/text-iterator/findString-selection-disabled.html
+++ b/third_party/WebKit/LayoutTests/editing/text-iterator/findString-selection-disabled.html
@@ -29,14 +29,14 @@ function testFindString(text, target, disableSelection, expected)
container.className = disableSelection ? "selectionDisabled" : "selectionEnabled";
- shouldBe("layoutTestController.findString('" + target + "', [])", expected);
+ shouldBe("testRunner.findString('" + target + "', [])", expected);
container.innerText = "";
log("");
}
-if (!window.layoutTestController)
- testFailed('This test requires the layoutTestController object');
+if (!window.testRunner)
+ testFailed('This test requires the testRunner object');
else {
for (i = 0; i < 2; i++) {
var disableSelection = (i == 1);