mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
feat(chromium): roll Chromium to r571040 (#2814)
This roll includes: - https://crrev.com/570566 - DevTools: teach DOM.getBoxModel to work with SVG nodes Fixes #1247.
This commit is contained in:
parent
d6741eca08
commit
c4acc63775
@ -8,7 +8,7 @@
|
|||||||
"node": ">=6.4.0"
|
"node": ">=6.4.0"
|
||||||
},
|
},
|
||||||
"puppeteer": {
|
"puppeteer": {
|
||||||
"chromium_revision": "568432"
|
"chromium_revision": "571040"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"unit": "node test/test.js",
|
"unit": "node test/test.js",
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
<link rel='stylesheet' href='./style.css'>
|
<link rel='stylesheet' href='./style.css'>
|
||||||
<script src='./script.js' type='text/javascript'></script>
|
<script src='./script.js' type='text/javascript'></script>
|
||||||
|
<style>
|
||||||
|
div {
|
||||||
|
line-height: 18px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<div>Hi, I'm frame</div>
|
<div>Hi, I'm frame</div>
|
||||||
|
@ -50,7 +50,7 @@ module.exports.addTests = function({testRunner, expect}) {
|
|||||||
const box = await elementHandle.boundingBox();
|
const box = await elementHandle.boundingBox();
|
||||||
expect(box).toEqual({ x: 8, y: 8, width: 100, height: 200 });
|
expect(box).toEqual({ x: 8, y: 8, width: 100, height: 200 });
|
||||||
});
|
});
|
||||||
xit('should work with SVG nodes', async({page, server}) => {
|
it('should work with SVG nodes', async({page, server}) => {
|
||||||
await page.setContent(`
|
await page.setContent(`
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500">
|
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500">
|
||||||
<rect id="theRect" x="30" y="50" width="200" height="300"></rect>
|
<rect id="theRect" x="30" y="50" width="200" height="300"></rect>
|
||||||
|
Loading…
Reference in New Issue
Block a user