Bug 312642 followup: move the click/mousedown event handlers to the bubbling phase to make dealing with anonymous content easier, r=neil

This commit is contained in:
gavin%gavinsharp.com 2006-02-04 17:45:56 +00:00
Родитель 32a3f7d344
Коммит 6e0d006082
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -146,7 +146,7 @@
]]>
</handler>
<handler event="mousedown" phase="capturing">
<handler event="mousedown">
<![CDATA[
this.mIgnoreClick = this.hasAttribute("focused");
@ -157,7 +157,7 @@
]]>
</handler>
<handler event="click" phase="capturing">
<handler event="click">
<![CDATA[
if (!this.mIgnoreClick && this.clickSelectsAll &&
this.inputField.selectionStart == this.inputField.selectionEnd)