Bug 987121 - Make sure we get mousemove events when autoscroll widget is showing (r=felipe)

This commit is contained in:
Bill McCloskey 2014-03-28 17:42:12 -07:00
Родитель df84680998
Коммит bc585df1e0
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -909,6 +909,9 @@
const XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
var popup = document.createElementNS(XUL_NS, "panel");
popup.className = "autoscroller";
// We set this attribute on the element so that mousemove
// events can be handled by browser-content.js.
popup.setAttribute("mousethrough", "always");
return popup;
]]>
</body>