We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18cbce8 commit 22c916cCopy full SHA for 22c916c
common/content/hints.js
@@ -507,7 +507,7 @@ const Hints = Module("hints", {
507
let css = [];
508
// FIXME: Broken for imgspans.
509
for (let { doc } of this._docs) {
510
- for (let elem in util.evaluateXPath(" {//*[@liberator:highlight and @number]", doc)) {
+ for (let elem in util.evaluateXPath("//*[@liberator:highlight and @number]", doc)) {
511
let group = elem.getAttributeNS(NS.uri, "highlight");
512
css.push(highlight.selector(group) + "[number=" + elem.getAttribute("number").quote() + "] { " + elem.style.cssText + " }");
513
}
0 commit comments