فهرست منبع

remove frames with no height and no width

Gildas 7 سال پیش
والد
کامیت
57f94d6433
1فایلهای تغییر یافته به همراه3 افزوده شده و 2 حذف شده
  1. 3 2
      lib/single-file/doc-helper.js

+ 3 - 2
lib/single-file/doc-helper.js

@@ -78,8 +78,9 @@ this.docHelper = this.docHelper || (() => {
 					markHiddenElements(win, doc.body, styles, markerRemovedContent);
 					markBackdropBackground(doc, win, markerRemovedContent);
 					doc.querySelectorAll("iframe").forEach(element => {
-						if (testHiddenElement(element, styles.get(element))) {
-							element.srcdoc = "<html>";
+						const boundingRect = element.getBoundingClientRect();
+						if (!boundingRect.width && !boundingRect.height) {
+							element.setAttribute(markerRemovedContent, "");
 						}
 					});
 				}