Bug 1257790 - Don't propagate dragstart for mouse events originating in remote browsers. r=felipe

This commit is contained in:
Blake Kaplan 2016-03-29 14:10:40 -07:00
Родитель 6d519efcb6
Коммит f848e29c72
1 изменённых файлов: 10 добавлений и 0 удалений

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

@ -547,6 +547,16 @@
</body>
</method>
</implementation>
<handlers>
<handler event="dragstart">
<![CDATA[
// If we're a remote browser dealing with a dragstart, stop it
// from propagating up, since our content process should be dealing
// with the mouse movement.
event.stopPropagation();
]]>
</handler>
</handlers>
</binding>