From 22284e5ff6e16f64fcd8629dda1b8b95cce5f0ce Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Fri, 23 Jul 2021 08:43:49 -0400 Subject: [PATCH] Use `#?#` form to make the test page compatible with other blockers --- docs/tests/procedural-cosmetic-filters.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tests/procedural-cosmetic-filters.html b/docs/tests/procedural-cosmetic-filters.html index a025d44da..e3728787a 100644 --- a/docs/tests/procedural-cosmetic-filters.html +++ b/docs/tests/procedural-cosmetic-filters.html @@ -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');