Skip to content

Commit

Permalink
feat(chromium): roll Chromium to r650583 (puppeteer#4284)
Browse files Browse the repository at this point in the history
This roll includes:
- https://crrev.com/650583 - DevTools: fix DOM.getContentQuads for a
  corner case

Fixes puppeteer#4281.
  • Loading branch information
aslushnikov authored Apr 13, 2019
1 parent 145e868 commit a8ffdad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"node": ">=6.4.0"
},
"puppeteer": {
"chromium_revision": "649004"
"chromium_revision": "650583"
},
"scripts": {
"unit": "node test/test.js",
Expand Down
2 changes: 1 addition & 1 deletion test/click.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ module.exports.addTests = function({testRunner, expect}) {
expect(await page.evaluate(() => result)).toBe('Clicked');
});
// @see https://github.com/GoogleChrome/puppeteer/issues/4281
xit('should click on a span with an inline element inside', async({page, server}) => {
it('should click on a span with an inline element inside', async({page, server}) => {
await page.setContent(`
<style>
span::before {
Expand Down

0 comments on commit a8ffdad

Please sign in to comment.