-
Notifications
You must be signed in to change notification settings - Fork 9.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(chromium): roll Chromium to r682225 #4844
Conversation
Is the headless team still using site-per-process=off? If so, I imagine other people will want it off for performance reasons. Maybe this fix should happen on the devtools side, so that devtools doesnt crash with this flag? |
@@ -116,6 +117,13 @@ module.exports.addTests = function({testRunner, expect, puppeteer, defaultBrowse | |||
await page.click('body'); | |||
await browser.close(); | |||
}); | |||
it('should open devtools when "devtools: true" option is given', async({server}) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
firefox won't like this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why? We run headful tests on CHROME only
I don't think there are any embedders that will use this in the long run - this mode is going away. |
This roll includes: - https://crrev.com/681997 - Turn on default SiteInstance by default. The SiteInstance by default was breaking "devtools: true" option, so there's a new feature we disable now by default. This keeps pressuring us towards OOPIF support since that's an inevitable future.
218010f
to
7dc788d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Description is out of date
This roll includes: - https://crrev.com/681997 - Turn on default SiteInstance by default. The SiteInstance by default was breaking "devtools: true" option, so there's a new feature we disable now by default. This keeps pressuring us towards OOPIF support since that's an inevitable future.
This roll includes:
The SiteInstance by default was breaking "devtools: true" option, so
there's a new feature we disable now by default.
This keeps pressuring us towards OOPIF support since that's an
inevitable future.