зеркало из https://github.com/mozilla/gecko-dev.git
12 строки
289 B
JavaScript
12 строки
289 B
JavaScript
/* global TestFunctions */
|
|
|
|
postMessage("Done", "*");
|
|
|
|
var p = new Promise(function(resolve, reject) {
|
|
TestFunctions.throwUncatchableException();
|
|
ok(false, "Shouldn't get here!");
|
|
}).catch(function(exception) {
|
|
ok(false, "Shouldn't get here!");
|
|
});
|
|
ok(false, "Shouldn't get here!");
|