Changes between Initial Version and Version 5 of Ticket #9109
- Timestamp:
- Apr 11, 2009, 2:10:00 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9109
-
Property
Priority
changed from
high
tonormal
- Property Cc elatzukin Adam Peller James Burke added
-
Property
Severity
changed from
blocker
tonormal
-
Property
Priority
changed from
-
Ticket #9109 – Description
initial v5 1 dojo.clone fai s in FF 3.0.8, works in IE 7.0.57301 dojo.clone fails in FF 3.0.8, works in IE 7.0.5730 2 2 3 3 Testcase is simple: 4 4 5 {{{ 5 6 var newnode=new dijit.form.TextBox(); 6 7 console.warn("newnode",newnode); 7 8 var clone=dojo.clone(newnode); 8 9 console.warn("clone",clone); 10 }}} 9 11 10 12 works 100% as per expected in IE7 11 13 12 14 in FF, fails thus: 15 {{{ 13 16 e is undefined 14 17 fp()()/code/do.../event.js (line 33) … … 19 22 clone()([[[input#dijit_form_TextBox_0.dijit, "onmouseenter", function(), 1 more... 0=input#dijit_form_TextBox_0.dijit 1=onmouseenter] 0=[4]], [[input#dijit_form_TextBox_0.dijit, "onmouseleave", function(), 1 more... 0=input#dijit_form_TextBox_0.dijit 1=onmouseleave] 0=[4]], [[input#dijit_form_TextBox_0.dijit, "oninput", function(), 1 more... 0=input#dijit_form_TextBox_0.dijit 1=oninput 3=1] 0=[4]] 0=[1] 1=[1] 2=[1]])/code/do...e/lang.js (line 243) 20 23 clone()([Widget dijit.form.TextBox, dijit_form_TextBox_0] _connects=[3] _deferredConnects=Object) 24 }}} 21 25 22 26 this looks to be the same code (without the webkit additions, which I don't understand) as trac #7748, i.e. its something to do with the special handling of mouseenter events in FF