summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/files/null-origin-string.html
diff options
context:
space:
mode:
authorkinuko@chromium.org <kinuko@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2012-06-20 05:12:22 +0000
committerkinuko@chromium.org <kinuko@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2012-06-20 05:12:22 +0000
commit5239adce410479e7d533554ff1e48280a98eb4ff (patch)
tree22408cb6b285c7bc36f158c8b2b5a12960f799d1 /third_party/WebKit/LayoutTests/fast/files/null-origin-string.html
parent12cfcd07693a13311adae7f7c4d634577f79d986 (diff)
downloadchromium_src-5239adce410479e7d533554ff1e48280a98eb4ff.zip
chromium_src-5239adce410479e7d533554ff1e48280a98eb4ff.tar.gz
chromium_src-5239adce410479e7d533554ff1e48280a98eb4ff.tar.bz2
Use testRunner instead of layoutTestController in fast/{files,filesystem}
https://bugs.webkit.org/show_bug.cgi?id=89462 Reviewed by Ryosuke Niwa. * fast/files/apply-blob-url-to-img.html: * fast/files/apply-blob-url-to-xhr.html: * fast/files/blob-builder-crash.html: * fast/files/blob-slice-overflow.html: * fast/files/blob-slice-test.html: * fast/files/create-blob-url-crash.html: * fast/files/domurl-script-execution-context-crash.html: * fast/files/file-reader-abort.html: * fast/files/file-reader-directory-crash.html: * fast/files/file-reader-event-listener.html: * fast/files/file-reader-file-url.html: * fast/files/file-reader-sandbox-iframe.html: * fast/files/null-origin-string.html: * fast/files/read-blob-async.html: * fast/files/read-file-async.html: * fast/files/resources/file-reader-real.html: * fast/files/resources/setup-for-read-common.js: * fast/files/revoke-blob-url.html: * fast/files/script-tests/xhr-response-blob.js: * fast/files/workers/inline-worker-via-blob-url.html: * fast/files/workers/worker-apply-blob-url-to-xhr.html: * fast/files/workers/worker-read-blob-async.html: * fast/files/workers/worker-read-blob-sync.html: * fast/files/workers/worker-read-file-async.html: * fast/files/workers/worker-read-file-sync.html: * fast/filesystem/cross-filesystem-op.html: * fast/filesystem/file-after-reload-crash.html: * fast/filesystem/file-metadata-after-write.html: * fast/filesystem/filesystem-no-callback-null-ptr-crash.html: * fast/filesystem/filesystem-uri-origin.html: git-svn-id: svn://svn.chromium.org/blink/trunk@120798 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/files/null-origin-string.html')
-rw-r--r--third_party/WebKit/LayoutTests/fast/files/null-origin-string.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/files/null-origin-string.html b/third_party/WebKit/LayoutTests/fast/files/null-origin-string.html
index 1f99e1e..85a0c0a 100644
--- a/third_party/WebKit/LayoutTests/fast/files/null-origin-string.html
+++ b/third_party/WebKit/LayoutTests/fast/files/null-origin-string.html
@@ -16,14 +16,14 @@ function onInputFileChange()
reader.readAsText(file);
console.log('Started reading...');
- top.location = 'data:text/html,<p>PASS if no crash.</p><script>layoutTestController.notifyDone()</scr' + 'ipt>';
+ top.location = 'data:text/html,<p>PASS if no crash.</p><script>testRunner.notifyDone()</scr' + 'ipt>';
}
</script>
<script>
if (window.eventSender) {
- layoutTestController.dumpAsText();
- layoutTestController.waitUntilDone();
+ testRunner.dumpAsText();
+ testRunner.waitUntilDone();
}
document.write('<iframe src="data:text/html,<input type=file id=file onchange=\'onInputFileChange()\'><script>' + document.getElementsByTagName("script")[0].innerText + 'runTest()</scr' + 'ipt>" style="left:0px;top:0px"></iframe>');
</script>