Hi all, On 13 August 2012 15:04, Daniel Wagner <[email protected]> wrote:
>> On 13 August 2012 14:19, Nick Glencross <[email protected]> wrote: >>> Hi, >>> >>> Can I check if anyone is using browser specific builds, as outlined in: >>> >>> >>> http://manual.qooxdoo.org/2.1/pages/application/featureconfigeditor.html#browser-specific-builds >>> >>> When I try it with IE 8 I get an error 'Object doesn't support this >>> property or method'. > yes, hyphenate is mainly used to convert JS style property names into > CSS names, so apparently some environment value that is supposed to be a > property name is "true" instead. Try removing the "css.*" environment > keys from your config and see if that helps. Yes, removing the "css.*" lines has helped. >> >> Nether-the-less, it would still be nice to know if this tweak is >> acceptable, and whether anyone else has seen this? > > I just did a quick check where I built the Feed Reader app with > preconfigured environment values from IE8 and didn't see any problems. > Still, I'd very much like to find out where/why hyphenate gets called > with a boolean. > IE 8's built-in dev tools aren't great, but you should be able to get it > to break. Make sure the "break on exception" button is active in the > "Script" tab before pressing "start debugging". That's really good... I didn't know IE now came with useful Developer tools. I assumed you'd still need VS. Doing a backtrace I see the caller is __detectVendorProperties, and the culprit caller this.__cssNames[key] = key == "float" ? "float" : qx.lang.String.hyphenate(styleNames[key]); In this case I think it's the textOverflow key that's the problem, and removing just this key seems to have sorted it. Cheers, Nick ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
