mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Use #?# form to make the test page compatible with other blockers
This commit is contained in:
parent
31e0ea1e83
commit
22284e5ff6
1 changed files with 1 additions and 1 deletions
|
|
@ -210,7 +210,7 @@
|
|||
const fragment = document.createDocumentFragment();
|
||||
for ( const node of document.querySelectorAll('code') ) {
|
||||
const div = document.createElement('div');
|
||||
div.textContent = `${hostname}##${node.textContent}`;
|
||||
div.textContent = `${hostname}#?#${node.textContent}`;
|
||||
fragment.appendChild(div);
|
||||
}
|
||||
const parent = document.querySelector('.filters');
|
||||
|
|
|
|||
Loading…
Reference in a new issue