diff options
author | rniwa@webkit.org <rniwa@webkit.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2012-06-22 06:52:33 +0000 |
---|---|---|
committer | rniwa@webkit.org <rniwa@webkit.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2012-06-22 06:52:33 +0000 |
commit | e0114e82e9914f7402dcf4d60efb838267d41ab1 (patch) | |
tree | 1edb9fc58cd21d4fae9503babf61946a9ca8dc2c /third_party/WebKit/LayoutTests/fast/forms/textarea-submit-crash.html | |
parent | db83c9b57590f6e2ce71941951b5f49815d20410 (diff) | |
download | chromium_src-e0114e82e9914f7402dcf4d60efb838267d41ab1.zip chromium_src-e0114e82e9914f7402dcf4d60efb838267d41ab1.tar.gz chromium_src-e0114e82e9914f7402dcf4d60efb838267d41ab1.tar.bz2 |
Use testRunner instead of layoutTestController in fast/fast-mobile-scrolling, flexbox, forms, frames, gradients tests
https://bugs.webkit.org/show_bug.cgi?id=89741
Reviewed by Kent Tamura.
* fast/flexbox/box-ordinal-group.html:
* fast/flexbox/box-size-integer-overflow.html:
* fast/flexbox/crash-button-input-autofocus.html:
* fast/flexbox/crash-button-keygen.html:
* fast/flexbox/crash-button-relayout.html:
* fast/flexbox/crash-flexbox-no-layout-child.html:
* fast/flexbox/horizontal-box-float-crash.html:
* fast/flexbox/inline-children-crash.html:
* fast/flexbox/layoutHorizontalBox-crash.html:
* fast/flexbox/line-clamp-crash.html:
* fast/flexbox/overhanging-floats-not-removed-crash.html:
* fast/flexbox/resources/box-orient-button.js:
* fast/forms/:
* fast/frames/:
* fast/gradients/crash-on-1px-border.html:
* fast/gradients/crash-on-degenerate-gradient.html:
* fast/gradients/crash-on-remove.html:
* fast/gradients/crash-on-tr.html:
* fast/gradients/css3-color-stop-units.html:
* fast/gradients/css3-color-stops.html:
* fast/gradients/css3-linear-angle-gradients.html:
* fast/gradients/css3-linear-right-angle-gradients.html:
* fast/gradients/css3-radial-gradient-crash.html:
* fast/gradients/css3-radial-gradients.html:
* fast/gradients/css3-radial-gradients2.html:
* fast/gradients/css3-radial-gradients3.html:
* fast/gradients/css3-repeating-end-fill.html:
* fast/gradients/css3-repeating-linear-gradients.html:
* fast/gradients/css3-repeating-linear-gradients2.html:
* fast/gradients/css3-repeating-radial-gradients.html:
* fast/gradients/gradient-after-transparent-border.html:
* fast/gradients/gradient-on-pseudoelement-crash.html:
* platform/chromium/fast/forms/search-popup-crasher.html:
* platform/gtk/fast/forms/menulist-typeahead-find.html:
* platform/gtk/fast/frames/scrolling-iframe-out-of-viewport.html:
* platform/mac/fast/forms/attributed-strings.html:
* platform/mac/fast/forms/listbox-scrollbar-hit-test.html:
* platform/mac/fast/forms/script-tests/focus-option-control-on-page.js:
(startTest):
(runKeyPresses):
(notifyDone):
git-svn-id: svn://svn.chromium.org/blink/trunk@121008 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/forms/textarea-submit-crash.html')
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/forms/textarea-submit-crash.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/forms/textarea-submit-crash.html b/third_party/WebKit/LayoutTests/fast/forms/textarea-submit-crash.html index 4102137..939cdac 100644 --- a/third_party/WebKit/LayoutTests/fast/forms/textarea-submit-crash.html +++ b/third_party/WebKit/LayoutTests/fast/forms/textarea-submit-crash.html @@ -12,9 +12,9 @@ function log(s) { (function () { if (document.URL.indexOf('?') == -1) { - if (window.layoutTestController) { - layoutTestController.dumpAsText(); - layoutTestController.waitUntilDone(); + if (window.testRunner) { + testRunner.dumpAsText(); + testRunner.waitUntilDone(); } document.getElementById("textarea").style.display = "none"; @@ -25,7 +25,7 @@ function log(s) { log("PASS: You didn't crash."); log("Submitted form value: " + location.search); - if (window.layoutTestController) - layoutTestController.notifyDone(); + if (window.testRunner) + testRunner.notifyDone(); })(); </script> |