summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/workers/wrapper-map-gc.html
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/workers/wrapper-map-gc.html')
-rw-r--r--third_party/WebKit/LayoutTests/fast/workers/wrapper-map-gc.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/workers/wrapper-map-gc.html b/third_party/WebKit/LayoutTests/fast/workers/wrapper-map-gc.html
index 8032277..416193b 100644
--- a/third_party/WebKit/LayoutTests/fast/workers/wrapper-map-gc.html
+++ b/third_party/WebKit/LayoutTests/fast/workers/wrapper-map-gc.html
@@ -1,9 +1,9 @@
<script>
function test()
{
- if (window.layoutTestController) {
- layoutTestController.dumpAsText();
- layoutTestController.waitUntilDone();
+ if (window.testRunner) {
+ testRunner.dumpAsText();
+ testRunner.waitUntilDone();
}
var counter = 0;
@@ -18,8 +18,8 @@ function test()
if (++counter > 20) {
document.getElementById("result").innerText = "PASS";
worker.terminate();
- if (window.layoutTestController) {
- layoutTestController.notifyDone();
+ if (window.testRunner) {
+ testRunner.notifyDone();
}
}
}