mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 09:07:54 +01:00
Merge pull request #555 from seanrand/shadowdom-exception
try/catch createShadowRoot in contentscripts
This commit is contained in:
commit
8e5ff6693b
2 changed files with 12 additions and 2 deletions
|
@ -470,7 +470,12 @@ var uBlockCollapser = (function() {
|
|||
if ( shadow !== null && shadow.className === sessionId ) {
|
||||
continue;
|
||||
}
|
||||
// not all nodes can be shadowed
|
||||
try {
|
||||
shadow = elem.createShadowRoot();
|
||||
} catch (ex) {
|
||||
continue;
|
||||
}
|
||||
shadow.className = sessionId;
|
||||
}
|
||||
};
|
||||
|
|
|
@ -181,7 +181,12 @@ var hideElements = function(selectors) {
|
|||
if ( shadow !== null && shadow.className === sessionId ) {
|
||||
continue;
|
||||
}
|
||||
// not all nodes can be shadowed
|
||||
try {
|
||||
shadow = elem.createShadowRoot();
|
||||
} catch (ex) {
|
||||
continue;
|
||||
}
|
||||
shadow.className = sessionId;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue