mirror of https://github.com/gorhill/uBlock.git
Check childElementCount directly. (#2725)
This commit is contained in:
parent
ab5580db67
commit
88fcf53d34
|
@ -1232,7 +1232,7 @@ vAPI.domCollapser = (function() {
|
|||
if ( node.localName === 'iframe' ) {
|
||||
addIFrame(node);
|
||||
}
|
||||
if ( node.children && node.children.length !== 0 ) {
|
||||
if ( node.childElementCount > 0 ) {
|
||||
var iframes = node.getElementsByTagName('iframe');
|
||||
if ( iframes.length !== 0 ) {
|
||||
addIFrames(iframes);
|
||||
|
|
Loading…
Reference in New Issue