| Index: third_party/WebKit/LayoutTests/http/tests/origin_trials/resources/origin_trials.js
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/origin_trials/resources/origin_trials.js b/third_party/WebKit/LayoutTests/http/tests/origin_trials/resources/origin_trials.js
|
| index 693cde95d66b24243cb2ef1396f067efde78cb8b..a16f1f2376ca077588589d9ca94deae17efff5c3 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/origin_trials/resources/origin_trials.js
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/origin_trials/resources/origin_trials.js
|
| @@ -24,6 +24,8 @@ expect_failure = (t) => {
|
| }
|
| }];
|
|
|
| + fetch_tests_from_worker(new Worker('resources/disabled-worker.js'));
|
| +
|
| for (var i = 0; i < tests.length; ++i) {
|
| if (t)
|
| t.step(tests[i].code);
|
| @@ -44,4 +46,6 @@ test(() => {
|
| assert_idl_attribute(window.internals, 'frobulateBindings');
|
| assert_true(window.internals.frobulateBindings, 'Attribute should return boolean value');
|
| }, 'Attribute should exist and return value');
|
| +
|
| +fetch_tests_from_worker(new Worker('resources/enabled-worker.js'));
|
| };
|
|
|