promise_uncatchable_exception.js 261 B

12345678910
  1. postMessage("Done", "*");
  2. var p = new Promise(function(resolve, reject) {
  3. TestFunctions.throwUncatchableException();
  4. ok(false, "Shouldn't get here!");
  5. }).catch(function(exception) {
  6. ok(false, "Shouldn't get here!");
  7. });
  8. ok(false, "Shouldn't get here!");