diff options
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/forms/search-event-delay.html')
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/forms/search-event-delay.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/forms/search-event-delay.html b/third_party/WebKit/LayoutTests/fast/forms/search-event-delay.html index 6139e7e..19dc4d3 100644 --- a/third_party/WebKit/LayoutTests/fast/forms/search-event-delay.html +++ b/third_party/WebKit/LayoutTests/fast/forms/search-event-delay.html @@ -32,16 +32,16 @@ function searchEvent(event) sendDeleteKeyEvent(); } } else { - if (window.layoutTestController) - setTimeout("layoutTestController.notifyDone()", 0); // Do it on a timer to avoid Windows DRT hanging. + if (window.testRunner) + setTimeout("testRunner.notifyDone()", 0); // Do it on a timer to avoid Windows DRT hanging. } } function startTest() { - if (window.layoutTestController) { - layoutTestController.dumpAsText(); - layoutTestController.waitUntilDone(); + if (window.testRunner) { + testRunner.dumpAsText(); + testRunner.waitUntilDone(); } document.getElementById("search").focus(); sendKeyEvent(); |