pull/2/head
gorhill 7 years ago
parent 2016e28ee5
commit 05a312f6d0
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

@ -19,7 +19,7 @@
Home: https://github.com/gorhill/uMatrix
*/
/* global HTMLDocument */
/* global HTMLDocument, XMLDocument */
'use strict';
@ -33,8 +33,11 @@
/******************************************************************************/
// https://github.com/chrisaljoudi/uBlock/issues/464
if ( document instanceof HTMLDocument === false ) {
//console.debug('contentscript.js > not a HTLMDocument');
// https://github.com/gorhill/uMatrix/issues/621
if (
document instanceof HTMLDocument === false &&
document instanceof XMLDocument === false
) {
return;
}

Loading…
Cancel
Save