MRchildNEO / svgweb

Automatically exported from code.google.com/p/svgweb
Other
0 stars 0 forks source link

changing display properties don't work in IE8 #598

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
only in IE8 (Flash 10.1.102.64, SVG Web r1309) 
the following doesn't work

  rightRect.style.display='block';

see reduced testcase here

  http://vis.uell.net/gsvg/displayBlock_IE8.html

Compatibility View, IE7 and native renderers all work fine.

Original issue reported on code.google.com by mneu...@gmail.com on 31 Dec 2010 at 1:30

GoogleCodeExporter commented 8 years ago
Fixed in r1310. Tests in r1311.

This was an unreleased regression from Issue 573/r1273 and therefore will not 
be included in the release notes.

Original comment by grick23@gmail.com on 31 Dec 2010 at 7:11

GoogleCodeExporter commented 8 years ago
This is not yet working for me. 
I've updated the above testcase to r1317 but the problem persists in IE8 (and 
IE8 only)

http://vis.uell.net/gsvg/displayBlock_IE8.html

Flash 10.1.102.64
IE 8.0.6001.18702 (WinXP)
IE 8.0.7600.16385 (Win7)

Original comment by mneu...@gmail.com on 2 Jan 2011 at 3:31

GoogleCodeExporter commented 8 years ago
Fixed in r1318.

Issue 598; Reduce compression of svg.js because this
is causing a failure of the test file in Issue 598.
Even --compiliation_level SIMPLE_OPTIMIZATIONS is failing.
This increases compressed size by over 30K.
Full compression will be restored if the problem with
the Google closure compiler can be determined and resolved.

I am going to have to debug this failure in compressed mode and hopefully 
figure out how the compression process caused this new(?) failure. :(

Original comment by grick23@gmail.com on 2 Jan 2011 at 8:07

GoogleCodeExporter commented 8 years ago
Compression restored and compression friendly workaround implemented in r1319.

Original comment by grick23@gmail.com on 2 Jan 2011 at 8:37

GoogleCodeExporter commented 8 years ago
Updated compiler and fixes for warnings in r1320.

Original comment by grick23@gmail.com on 2 Jan 2011 at 8:57

GoogleCodeExporter commented 8 years ago
Ups, I was of the opinion that the Google closure compiler was non-destructive. 
Sorry that I always tested with the closure compiled version.

Does comment #5 mean that the Google closure compiler at
http://closure-compiler.appspot.com
should not be used but one should use the Java version locally that you have 
improved?

Original comment by mneu...@gmail.com on 2 Jan 2011 at 9:35

GoogleCodeExporter commented 8 years ago
The update to the compiler was just one I obtained by taking a fresh download 
and I think it is the same one you are pointing to.  I decided to check it in 
because it seemed to work to I figured it was a good idea to use the latest 
version. It did not fix any specific problem that I know of.

Original comment by grick23@gmail.com on 3 Jan 2011 at 3:57

GoogleCodeExporter commented 8 years ago
Bug doesn't seems to be fixed IMO. Just by checking the given url with IE8 
(IETester in IE8 mode in fact), bugs.

Original comment by jeremy.l...@gmail.com on 16 May 2011 at 10:14

GoogleCodeExporter commented 8 years ago
I found the issue!
It seems that in compatibility view, event if the page said that it IS 
compatible with IE8 (by adding a meta tag), the UA string is always MSIE 7.0 
but documentMode is 8.
If you change the only test of isIE >= 8 to isIE >= 7, it works, so I guess 
that when isIE and documentMode == 8, isIE should be set to 8.

Original comment by ZeGlan...@gmail.com on 9 Aug 2011 at 8:33