diff options
author | yurys@chromium.org <yurys@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-23 08:36:17 +0000 |
---|---|---|
committer | yurys@chromium.org <yurys@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-23 08:36:17 +0000 |
commit | dd1923e5ef94bfe1c8d5cc00b9db6a0e761b1047 (patch) | |
tree | 8b24c46b6f7ddeabc4af869dcc71cc44848ba916 | |
parent | 792471320a24b12a1129f69ab7f67b95245ca9f9 (diff) | |
download | chromium_src-dd1923e5ef94bfe1c8d5cc00b9db6a0e761b1047.zip chromium_src-dd1923e5ef94bfe1c8d5cc00b9db6a0e761b1047.tar.gz chromium_src-dd1923e5ef94bfe1c8d5cc00b9db6a0e761b1047.tar.bz2 |
Update fast/workers/worker-script-error.html expectations in Chromium. Expected results of this test need update due to WebKit change http://trac.webkit.org/changeset/56329 and reenanle WorkerTest.WorkerScriptError
Nate, I found your name on WebKit Sheriff calendar so please update the expectations on the next WebKit roll.
BUG=38918
Review URL: http://codereview.chromium.org/1163001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42327 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/worker/worker_uitest.cc | 3 | ||||
-rw-r--r-- | webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/workers/worker-script-error-expected.txt | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/chrome/worker/worker_uitest.cc b/chrome/worker/worker_uitest.cc index 69906c4..065ae87 100644 --- a/chrome/worker/worker_uitest.cc +++ b/chrome/worker/worker_uitest.cc @@ -268,8 +268,7 @@ TEST_F(WorkerTest, WorkerReplaceSelf) { RunWorkerFastLayoutTest("worker-replace-self.html"); } -// http://crbug.com/38918 -TEST_F(WorkerTest, DISABLED_WorkerScriptError) { +TEST_F(WorkerTest, WorkerScriptError) { RunWorkerFastLayoutTest("worker-script-error.html"); } diff --git a/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/workers/worker-script-error-expected.txt b/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/workers/worker-script-error-expected.txt index 3f15859..5c2c8c9 100644 --- a/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/workers/worker-script-error-expected.txt +++ b/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/workers/worker-script-error-expected.txt @@ -3,9 +3,12 @@ Test Worker script error handling functionality. Should print a series of PASS m PASS: onerror invoked for a script that has invalid syntax. PASS: onerror invoked for a script that has script error 'Uncaught ReferenceError: foo is not defined' at line 1. PASS: event listener invoked for a script that has script error 'Uncaught ReferenceError: foo is not defined' at line 1. +PASS: onerror invoked for a script that has script error 'Uncaught ReferenceError: bar is not defined' at line 3. PASS: onerror invoked for a script that has script error 'Uncaught ReferenceError: foo is not defined' at line 7. PASS: onerror invoked for a script that has script error 'Uncaught ReferenceError: foo is not defined' at line 7. PASS: onerror invoked for a script that has script error 'Uncaught ReferenceError: foo is not defined' at line 7. PASS: message received from WorkerGlobalScope.onerror: onerror invoked for a script that has script error 'Uncaught ReferenceError: foo is not defined' at line 7. DONE +PASS: onerror invoked for an exception in setTimeout callback. +DONE |