#1807 closed defect (fixed)
ComboBox - Permission denied to get property HTMLDivElement.parentNode
Reported by: | Owned by: | Douglas Hays | |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | Widgets | Version: | 0.4 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
Browser: Firefox 1.5.0.7
http://archive.dojotoolkit.org/nightly/tests/widget/test_ComboBox.html
Try the 'Remote mode combobox' Click the Select arrow, onMouseOut from the *last* entry causes:
Permission denied to get property HTMLDivElement.parentNode
This looks like a bug in firefox but here's a simple fix:
ComboBox?.js
_onMouseOut:function(/*Event*/ evt){
var relTarget = evt.relatedTarget; try {
if(!relTarget relTarget.parentNode!=this.optionsListNode){ this._mouseover_list = false; this._handleBlurTimer(true, 100); this.tryFocus();
}
} catch(e) {
return;
};
},
jon
Change History (5)
comment:1 Changed 14 years ago by
Owner: | changed from bill to Douglas Hays |
---|
comment:2 Changed 14 years ago by
Milestone: | → 0.4.1 |
---|
comment:3 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:5 Changed 13 years ago by
Just noting that I've added a similar (perhaps related) ticket #4594
Note: See
TracTickets for help on using
tickets.
(In [6433]) fixes #1807