Bug 1188141: Make Worker error events not bubble. r=baku

This commit is contained in:
Kyle Huey 2015-07-28 15:59:55 -07:00
Родитель b4476f96d4
Коммит 512e1a6d95
3 изменённых файлов: 1 добавлений и 7 удалений

Просмотреть файл

@ -42,7 +42,6 @@ const TESTS = [
file: "test-bug-595934-workers.html",
category: "Web Worker",
matchString: "fooBarWorker",
expectError: true,
},
{
// #4

Просмотреть файл

@ -1565,7 +1565,7 @@ public:
init.mFilename = aFilename;
init.mLineno = aLineNumber;
init.mCancelable = true;
init.mBubbles = true;
init.mBubbles = false;
if (aTarget) {
nsRefPtr<ErrorEvent> event =

Просмотреть файл

@ -1,5 +0,0 @@
[Worker_ErrorEvent_bubbles_cancelable.htm]
type: testharness
[ErrorEvent on worker doesn't bubble and is cancelable]
expected: FAIL