remove _cssText attribute from style element
This commit is contained in:
@@ -64,6 +64,7 @@ function buildNode(n: serializedNodeWithId, doc: Document): Node | null {
|
||||
if (isTextarea || isRemoteCss) {
|
||||
const child = doc.createTextNode(value);
|
||||
node.appendChild(child);
|
||||
continue;
|
||||
}
|
||||
if (tagName === 'iframe' && name === 'src') {
|
||||
continue;
|
||||
|
||||
@@ -89,7 +89,7 @@ describe('integration tests', () => {
|
||||
await this.server.close();
|
||||
});
|
||||
|
||||
for (const html of htmls.slice(0, 10)) {
|
||||
for (const html of htmls) {
|
||||
const title = '[html file]: ' + html.filePath;
|
||||
it(title, async () => {
|
||||
const page: puppeteer.Page = await this.browser.newPage();
|
||||
|
||||
Reference in New Issue
Block a user