mirror of https://github.com/gorhill/uBlock.git
Merge pull request #555 from seanrand/shadowdom-exception
try/catch createShadowRoot in contentscripts
This commit is contained in:
commit
8e5ff6693b
|
@ -470,7 +470,12 @@ var uBlockCollapser = (function() {
|
||||||
if ( shadow !== null && shadow.className === sessionId ) {
|
if ( shadow !== null && shadow.className === sessionId ) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
shadow = elem.createShadowRoot();
|
// not all nodes can be shadowed
|
||||||
|
try {
|
||||||
|
shadow = elem.createShadowRoot();
|
||||||
|
} catch (ex) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
shadow.className = sessionId;
|
shadow.className = sessionId;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -181,7 +181,12 @@ var hideElements = function(selectors) {
|
||||||
if ( shadow !== null && shadow.className === sessionId ) {
|
if ( shadow !== null && shadow.className === sessionId ) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
shadow = elem.createShadowRoot();
|
// not all nodes can be shadowed
|
||||||
|
try {
|
||||||
|
shadow = elem.createShadowRoot();
|
||||||
|
} catch (ex) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
shadow.className = sessionId;
|
shadow.className = sessionId;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue