Browse Source

implemented exception behavior

Gildas 7 years ago
parent
commit
8eabb975ce
1 changed files with 4 additions and 1 deletions
  1. 4 1
      lib/single-file/frame-tree.js

+ 4 - 1
lib/single-file/frame-tree.js

@@ -153,7 +153,10 @@ this.frameTree = this.frameTree || (() => {
 						});
 						docHelper.postProcessDoc(frameDoc, frameWindow, options);
 					} catch (error) {
-						/* ignored */
+						framesData.push({
+							windowId: frameWindowId,
+							processed: true
+						});
 					}
 				}