[Prototype-core] Re: Interesting $$() behavior in Opera 9.21

2007-07-02 Thread jdalton
@Mislav - Yes I will try it with the selector.html (when I have time to find it). For now I was able to recreate the problem here: html head titleSelector Test/title script type=text/javascript src=prototype.js/script script Element.addMethods('DIV', { customMethod :

[Prototype-core] Re: Interesting $$() behavior in Opera 9.21

2007-07-02 Thread jdalton
I just tested Opera in the selector.html and no errors reported. I suspect this situation is not present in that file. I did however find an error in IE 6 with the testSelectorWithChild : 5 assertions, 0 failures, 1 errors TypeError: Object required([object Error])

[Prototype-core] Re: Interesting $$() behavior in Opera 9.21

2007-07-02 Thread jdalton
Found the bug: its in document._getElementsByXPath(); need to change: results.push( query.snapshotItem(i) ); TO results.push( $(query.snapshotItem(i)) ); I will create a ticket and post the fix. --~--~-~--~~~---~--~~ You received this message because you

[Prototype-core] Re: Interesting $$() behavior in Opera 9.21

2007-07-02 Thread jdalton
ticket and patch posted: http://dev.rubyonrails.org/ticket/8843 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Prototype: Core group. To post to this group, send email to prototype-core@googlegroups.com To

[Prototype-core] Re: Interesting $$() behavior in Opera 9.21

2007-06-30 Thread Mislav Marohnić
On 6/30/07, jdalton [EMAIL PROTECTED] wrote: var images = $$('.imagePrints'); for(var i=0; image=$(image[i]); i++){ image.attachEventHandlers(); //opera is coo with this now. } Yeah, thanks for reporting. This is a serious issue, and yes - we want to support Opera 9. I don't see how