diff options
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/xmlhttprequest/xmlhttprequest-open-after-iframe-onload-remove-self.html')
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/xmlhttprequest/xmlhttprequest-open-after-iframe-onload-remove-self.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/xmlhttprequest/xmlhttprequest-open-after-iframe-onload-remove-self.html b/third_party/WebKit/LayoutTests/fast/xmlhttprequest/xmlhttprequest-open-after-iframe-onload-remove-self.html index a1a51cc..d02ff26 100644 --- a/third_party/WebKit/LayoutTests/fast/xmlhttprequest/xmlhttprequest-open-after-iframe-onload-remove-self.html +++ b/third_party/WebKit/LayoutTests/fast/xmlhttprequest/xmlhttprequest-open-after-iframe-onload-remove-self.html @@ -1,16 +1,16 @@ <html> <script> -if (window.layoutTestController) { - layoutTestController.dumpAsText(); - layoutTestController.waitUntilDone(); +if (window.testRunner) { + testRunner.dumpAsText(); + testRunner.waitUntilDone(); } function onFrameLoad(frame) { var client = frame.contentWindow.client(); frame.parentNode.removeChild(frame); client.open("GET", "DoesNotExist.txt"); - if (window.layoutTestController) - layoutTestController.notifyDone(); + if (window.testRunner) + testRunner.notifyDone(); } </script> <body> |