Commit fb70234e authored by Takashi Toyoshima's avatar Takashi Toyoshima Committed by Commit Bot

OOR-CORS: CrSettingsV3BrowserTest inheritances depend on OOR-CORS

Since CrSettingsV3BrowserTest inheritances depend on OOR-CORS
as some other WebUI tests do, we need to flip the OOR-CORS to be
enabled explicitly to run tests.

These failed at linux-blink-cors fyi bots, for instance at
https://ci.chromium.org/p/chromium/builders/ci/linux-blink-cors-rel/1537

Bug: 1042558
Change-Id: I2f01ed89e0793ca04f4c4f325755f42c5b7a1704
Tbr: rbpotter@chromium.org
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2050294Reviewed-by: default avatarTakashi Toyoshima <toyoshim@chromium.org>
Commit-Queue: Takashi Toyoshima <toyoshim@chromium.org>
Cr-Commit-Position: refs/heads/master@{#740592}
parent c46b033c
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
// Polymer BrowserTest fixture. // Polymer BrowserTest fixture.
GEN_INCLUDE(['//chrome/test/data/webui/polymer_browser_test_base.js']); GEN_INCLUDE(['//chrome/test/data/webui/polymer_browser_test_base.js']);
GEN('#include "services/network/public/cpp/features.h"');
/** Test fixture for shared Polymer 3 elements. */ /** Test fixture for shared Polymer 3 elements. */
// eslint-disable-next-line no-var // eslint-disable-next-line no-var
...@@ -22,6 +23,11 @@ var CrSettingsV3BrowserTest = class extends PolymerTest { ...@@ -22,6 +23,11 @@ var CrSettingsV3BrowserTest = class extends PolymerTest {
'//chrome/test/data/webui/mocha_adapter.js', '//chrome/test/data/webui/mocha_adapter.js',
]; ];
} }
/** @override */
get featureList() {
return {enabled: ['network::features::kOutOfBlinkCors']};
}
}; };
// eslint-disable-next-line no-var // eslint-disable-next-line no-var
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment