mirror of https://github.com/gorhill/uBlock.git
this fixes #762
This commit is contained in:
parent
97a2cf8d58
commit
34b58178bc
|
@ -474,13 +474,12 @@ var uBlockCollapser = (function() {
|
|||
var elem, shadow;
|
||||
while ( i-- ) {
|
||||
elem = elems[i];
|
||||
shadow = elem.shadowRoot;
|
||||
// https://github.com/gorhill/uBlock/issues/762
|
||||
// Always hide using inline style.
|
||||
elem.style.setProperty('display', 'none', 'important');
|
||||
// https://www.chromestatus.com/features/4668884095336448
|
||||
// "Multiple shadow roots is being deprecated."
|
||||
if ( shadow !== null ) {
|
||||
if ( shadow.className !== sessionId ) {
|
||||
elem.style.setProperty('display', 'none', 'important');
|
||||
}
|
||||
if ( elem.shadowRoot !== null ) {
|
||||
continue;
|
||||
}
|
||||
// https://github.com/gorhill/uBlock/pull/555
|
||||
|
@ -490,7 +489,6 @@ var uBlockCollapser = (function() {
|
|||
shadow = elem.createShadowRoot();
|
||||
shadow.className = sessionId;
|
||||
} catch (ex) {
|
||||
elem.style.setProperty('display', 'none', 'important');
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue