Allow uncaught exceptions in worker runtime error tests.

This commit is contained in:
Ms2ger 2016-09-08 10:10:37 +02:00
parent 2d13178d29
commit 59cf735f85
9 changed files with 35 additions and 0 deletions

View file

@ -4,6 +4,10 @@
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
// The worker events races with the window's load event; if the worker events
// arrive first, the harness will detect the error event and fail the test.
setup({ allow_uncaught_exception: true });
async_test(function(t) {
var worker = new Worker('./support/ErrorEvent.js');
worker.onmessage = t.step_func_done(function(e) {

View file

@ -4,6 +4,10 @@
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
// The worker events races with the window's load event; if the worker events
// arrive first, the harness will detect the error event and fail the test.
setup({ allow_uncaught_exception: true });
async_test(function(t) {
var worker = new Worker('./support/ErrorEvent.js');
worker.onmessage = t.step_func_done(function(e) {

View file

@ -4,6 +4,10 @@
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
// The worker events races with the window's load event; if the worker events
// arrive first, the harness will detect the error event and fail the test.
setup({ allow_uncaught_exception: true });
async_test(function(t) {
var worker = new Worker('./support/ErrorEvent.js');
worker.onmessage = t.step_func_done(function(e) {

View file

@ -4,6 +4,10 @@
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
// The worker events races with the window's load event; if the worker events
// arrive first, the harness will detect the error event and fail the test.
setup({ allow_uncaught_exception: true });
async_test(function(t) {
var message = 'Error Message';
var worker = new Worker('./support/ErrorEvent.js');

View file

@ -6,6 +6,9 @@
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
// The worker events races with the window's load event; if the worker events
// arrive first, the harness will detect the error event and fail the test.
setup({ allow_uncaught_exception: true });
async_test(function(t) {
var worker = new Worker('./support/ErrorEvent.js');

View file

@ -4,6 +4,10 @@
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
// The worker events races with the window's load event; if the worker events
// arrive first, the harness will detect the error event and fail the test.
setup({ allow_uncaught_exception: true });
async_test(function(t) {
var worker = new Worker('./support/ErrorEvent.js');
worker.onerror = t.step_func_done(function(e) {

View file

@ -4,6 +4,10 @@
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
// The worker events races with the window's load event; if the worker events
// arrive first, the harness will detect the error event and fail the test.
setup({ allow_uncaught_exception: true });
async_test(function(t) {
var worker = new Worker('./support/ErrorEvent.js');
worker.onerror = t.step_func_done(function(e) {

View file

@ -4,6 +4,10 @@
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
// The worker events races with the window's load event; if the worker events
// arrive first, the harness will detect the error event and fail the test.
setup({ allow_uncaught_exception: true });
async_test(function(t) {
var message = 'Error Message';
var worker = new Worker('./support/ErrorEvent.js');

View file

@ -4,6 +4,10 @@
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
// The worker events races with the window's load event; if the worker events
// arrive first, the harness will detect the error event and fail the test.
setup({ allow_uncaught_exception: true });
async_test(function(t) {
var worker = new Worker('./support/ErrorEvent.js');
worker.onerror = t.step_func_done(function(e) {