| 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 a8c49f2b4eaf6c20fe3c0daa33d6213f7f076452..623d5cc16e8e9c12b12d1076cba8229f0ef5cf3c 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
|
| @@ -101,5 +101,11 @@ test(() => {
|
| assert_true(window.internals.frobulateMethodPartial(), 'Method should return boolean value');
|
| }, 'Method should exist on partial interface and return value');
|
|
|
| +test(() => {
|
| + var internalsInterface = window.internals.constructor;
|
| + assert_exists(internalsInterface, 'frobulateStatic');
|
| + assert_true(internalsInterface.frobulateStatic, 'Static attribute should return boolean value');
|
| + }, 'Static attribute should exist on partial interface and return value');
|
| +
|
| fetch_tests_from_worker(new Worker('resources/enabled-worker.js'));
|
| };
|
|
|