diff options
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/forms/select-no-name.html')
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/forms/select-no-name.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/forms/select-no-name.html b/third_party/WebKit/LayoutTests/fast/forms/select-no-name.html index 6b679fc..4c3f8c0 100644 --- a/third_party/WebKit/LayoutTests/fast/forms/select-no-name.html +++ b/third_party/WebKit/LayoutTests/fast/forms/select-no-name.html @@ -27,9 +27,9 @@ SELECT with no name generates invalid query string.</p> <h2 id="pass">PASS</h2> <h2 id="fail">FAIL</h2> <script type="text/javascript"> -if (window.layoutTestController) { - layoutTestController.waitUntilDone(); - layoutTestController.dumpAsText(); +if (window.testRunner) { + testRunner.waitUntilDone(); + testRunner.dumpAsText(); } function test() { @@ -55,8 +55,8 @@ function test() { } document.getElementById("pass").style.display = "inline-block"; } - if (window.layoutTestController) - layoutTestController.notifyDone(); + if (window.testRunner) + testRunner.notifyDone(); }; </script> <p> |