Merge branch 'master' of github.com:gorhill/uBlock

This commit is contained in:
gorhill 2016-10-31 08:44:54 -04:00
commit e914acd720
1 changed files with 1 additions and 1 deletions

View File

@ -1086,7 +1086,7 @@ vAPI.domCollapser = (function() {
if ( node.localName === 'iframe' ) {
addIFrame(node);
}
if ( node.children.length !== 0 ) {
if ( node.children && node.children.length !== 0 ) {
var iframes = node.getElementsByTagName('iframe');
if ( iframes.length !== 0 ) {
addIFrames(iframes);