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) {
|
if (isTextarea || isRemoteCss) {
|
||||||
const child = doc.createTextNode(value);
|
const child = doc.createTextNode(value);
|
||||||
node.appendChild(child);
|
node.appendChild(child);
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
if (tagName === 'iframe' && name === 'src') {
|
if (tagName === 'iframe' && name === 'src') {
|
||||||
continue;
|
continue;
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ describe('integration tests', () => {
|
|||||||
await this.server.close();
|
await this.server.close();
|
||||||
});
|
});
|
||||||
|
|
||||||
for (const html of htmls.slice(0, 10)) {
|
for (const html of htmls) {
|
||||||
const title = '[html file]: ' + html.filePath;
|
const title = '[html file]: ' + html.filePath;
|
||||||
it(title, async () => {
|
it(title, async () => {
|
||||||
const page: puppeteer.Page = await this.browser.newPage();
|
const page: puppeteer.Page = await this.browser.newPage();
|
||||||
|
|||||||
Reference in New Issue
Block a user