| Index: third_party/WebKit/LayoutTests/external/wpt/workers/constructors/Worker/same-origin.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/workers/constructors/Worker/same-origin.html b/third_party/WebKit/LayoutTests/external/wpt/workers/constructors/Worker/same-origin.html
|
| index 9b0148da3a258abf5780c2fc8c2114e3193fd201..bbc4382d0bbf1c5e2a6001f80e3c4f7a9e96ae07 100644
|
| --- a/third_party/WebKit/LayoutTests/external/wpt/workers/constructors/Worker/same-origin.html
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/workers/constructors/Worker/same-origin.html
|
| @@ -14,7 +14,7 @@ function testSharedWorkerHelper(t, script) {
|
| try {
|
| var worker = new SharedWorker(script, '');
|
| worker.onerror = t.step_func_done(function(e) {
|
| - assert_true(e instanceof ErrorEvent);
|
| + assert_true(e instanceof Event);
|
| });
|
| } catch (e) {
|
| t.step_func_done(function(e) { assert_true(true); });
|
|
|