Skip to content

Commit

Permalink
fix: some websites using WebComponents V0 not loading (#21866)
Browse files Browse the repository at this point in the history
Co-authored-by: Shelley Vohr <codebytere@github.com>
  • Loading branch information
2 people authored and zcbenz committed Jan 23, 2020
1 parent a6121f5 commit a40957f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions shell/browser/feature_list.cc
Expand Up @@ -27,6 +27,13 @@ void InitializeFeatureList() {
// when node integration is enabled.
disable_features +=
std::string(",") + features::kSpareRendererForSitePerProcess.name;

// https://www.polymer-project.org/blog/2018-10-02-webcomponents-v0-deprecations
// https://chromium-review.googlesource.com/c/chromium/src/+/1869562
// Any website which uses older WebComponents will fail in without this
// enabled, since Electron does not support origin trials.
enable_features += std::string(",") + "WebComponentsV0Enabled";

#if !BUILDFLAG(ENABLE_PICTURE_IN_PICTURE)
disable_features += std::string(",") + media::kPictureInPicture.name;
#endif
Expand Down

0 comments on commit a40957f

Please sign in to comment.