Bug 1205398 - e10s drag-n-drop panel should be mousethrough=always. r=jimm

This commit is contained in:
Felipe Gomes 2015-09-16 22:40:24 -03:00
Родитель 19c165bb04
Коммит 5958359894
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -5486,6 +5486,7 @@
this._dndCanvas = canvas;
this._dndPanel = document.createElement("panel");
this._dndPanel.setAttribute("type", "drag");
this._dndPanel.setAttribute("mousethrough", "always");
this._dndPanel.appendChild(canvas);
document.documentElement.appendChild(this._dndPanel);
}