prototypejs / prototype

Prototype JavaScript framework
http://prototypejs.org/
Other
3.54k stars 640 forks source link

Latest prototype.js from github repo fails in Opera #183

Closed jwestbrook closed 9 years ago

jwestbrook commented 10 years ago

previous lighthouse ticket #1282 by Victor


Condition in dom.js at line 2988 works not only for IE (as intended), but also for Opera:

if ('styleFloat' in DIV.style) {
  methods.getStyle = getStyle_IE;
  methods.setOpacity = setOpacity_IE;
  methods.getOpacity = getOpacity_IE;
}

so any setOpacity/getOpacity (Scriptaculous appear effect) is broken in Opera (tested in Opera 11.52).

jwestbrook commented 10 years ago

Matthew Kerwin May 1st, 2012 @ 03:37 AM

Seconded. This is causing a frequent (15ms), infinite timeout loop, and killing subsequent behaviours.