Skip to content

Commit f817455

Browse files
committed
Fix broken hints in FF44 #388
The issue seems like a z-index issue.
1 parent c0ce5ca commit f817455

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/content/hints.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ const Hints = Module("hints", {
304304

305305
let res = util.evaluateXPath(this._hintMode.tags(), doc, null, true);
306306

307-
let fragment = util.xmlToDom(xml`<div highlight="hints" style="position:fixed;top:0;left:0px;"/>`, doc);
307+
let fragment = util.xmlToDom(xml`<div highlight="hints" style="position:fixed;top:0;left:0px;z-index:2147483647;"/>`, doc);
308308
let pageHints = this._pageHints;
309309
let start = this._pageHints.length;
310310
let elem;

0 commit comments

Comments
 (0)