[Laszlo-checkins] r16836 - in openlaszlo/branches/4.8: . WEB-INF/lps/lfc/compiler
ptw@openlaszlo.org
ptw at openlaszlo.org
Tue Jun 29 17:46:46 PDT 2010
Author: ptw
Date: 2010-06-29 17:46:45 -0700 (Tue, 29 Jun 2010)
New Revision: 16836
Modified:
openlaszlo/branches/4.8/
openlaszlo/branches/4.8/WEB-INF/lps/lfc/compiler/Class.lzs
Log:
Merged revisions 16835 via svnmerge from
http://svn.openlaszlo.org/openlaszlo/trunk
.......
r16835 | max | 2010-06-29 18:16:34 -0400 (Tue, 29 Jun 2010) | 16 lines
Change 20100625-maxcarlson-L by maxcarlson at friendly on 2010-06-25 14:35:41 PDT
in /Users/maxcarlson/openlaszlo/trunk-clean
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: Remove Safari-specific kludge for Safari 5.0
Bugs Fixed: LPP-8704 - Revert r15423 when webkit bug 33450 is resolved
Technical Reviewer: ptw
QA Reviewer: hminsky
Details: Conditionalize the hack for Safari 5 as it's not needed anymore. I couldn't figure out the correct webkit version # for when the fix went in...
Tests: Recompiling the dev console works fine, examples/components/component_sampler.lzx?lzr=dhtml is fine
.......
Property changes on: openlaszlo/branches/4.8
___________________________________________________________________
Name: svnmerge-integrated
- /openlaszlo/trunk:1-3892,3894-3952,3954-4393,4395-4461,4463-4467,4469-4471,4473-5085,5087-5171,5173-5203,5205-5209,5211-5331,5333-5334,16597,16605,16610,16624,16628,16650,16711,16724,16757,16767,16771,16796,16824-16825 /openlaszlo/branches/4.7:1-15424,15759-15761,16592,16634 /openlaszlo/branches/4.2:1-12154,12181,13205,13778,14112,14287,14316,14508,14517-14590 /openlaszlo/branches/4.1:1-10153 /openlaszlo/branches/4.4:1-13936,14007 /openlaszlo/branches/devildog:1-8432 /openlaszlo/branches/pagan-deities:1-7955,8825,10756-10920,10922-10928,10930-10935,11151,11207,11554,13476,13629,15650,15685 /openlaszlo/branches/paperpie:1-6504,6506-6574,6576-7135,7137-7235 /openlaszlo/branches/wafflecone:1-5746,5818-6068,6070-6205,6207-6213,6216-6265,6267-6368,6370-6431,6433-6450,6497,6509,6661,7097,7872
+ /openlaszlo/trunk:1-3892,3894-3952,3954-4393,4395-4461,4463-4467,4469-4471,4473-5085,5087-5171,5173-5203,5205-5209,5211-5331,5333-5334,16597,16605,16610,16624,16628,16650,16711,16724,16757,16767,16771,16796,16824-16825,16835 /openlaszlo/branches/4.7:1-15424,15759-15761,16592,16634 /openlaszlo/branches/4.2:1-12154,12181,13205,13778,14112,14287,14316,14508,14517-14590 /openlaszlo/branches/4.1:1-10153 /openlaszlo/branches/4.4:1-13936,14007 /openlaszlo/branches/devildog:1-8432 /openlaszlo/branches/pagan-deities:1-7955,8825,10756-10920,10922-10928,10930-10935,11151,11207,11554,13476,13629,15650,15685 /openlaszlo/branches/paperpie:1-6504,6506-6574,6576-7135,7137-7235 /openlaszlo/branches/wafflecone:1-5746,5818-6068,6070-6205,6207-6213,6216-6265,6267-6368,6370-6431,6433-6450,6497,6509,6661,7097,7872
Modified: openlaszlo/branches/4.8/WEB-INF/lps/lfc/compiler/Class.lzs
===================================================================
--- openlaszlo/branches/4.8/WEB-INF/lps/lfc/compiler/Class.lzs 2010-06-29 22:16:34 UTC (rev 16835)
+++ openlaszlo/branches/4.8/WEB-INF/lps/lfc/compiler/Class.lzs 2010-06-30 00:46:45 UTC (rev 16836)
@@ -201,7 +201,8 @@
* @access private
*/
if ($dhtml) {
- if (lz.embed.browser.isSafari && (lz.embed.browser.version == "531.21")) {
+ // This no longer appears to be present in Safari 5
+ if (lz.embed.browser.isSafari && (lz.embed.browser.version >= "531.21") && (lz.embed.browser.version < "533.16")) {
Instance.prototype.addProperty('$lzsc$safarikludge', function $lzsc$safarikludge () {});
}
}
More information about the Laszlo-checkins
mailing list