Changes between Initial Version and Version 3 of Ticket #10409
- Timestamp:
- Nov 26, 2009, 7:26:53 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10409
- Property Owner changed from anonymous to Eugene Lazutkin
-
Property
Status
changed from
new
toassigned
-
Property
Milestone
changed from
tbd
to1.5
-
Ticket #10409 – Description
initial v3 3 3 This is easily achievable by replacing the following line in _setOpacity: 4 4 5 {{{ 6 #!js 5 7 node.style.zoom = 1.0; 8 }}} 6 9 7 10 with the following instead: 8 11 12 {{{ 13 #!js 9 14 node.style.zoom = (opacity == 1 ? '' : 1.0); 15 }}} 10 16 11 17 I'm attaching the same file as I did with #10408 to reproduce this, except this time it needs to be tested with cleartype on, in a specific rendering mode in which it happens. I know it happens in IE8 running in IE7 standards mode or quirks mode; using the developer tools you can easily switch this from the Document Mode menu. Unfortunately I'm unsure in which modes in native IE7 this happens. As with #10408, I tested on 1.3.2 but I expect the same thing to happen in 1.4 RC since the code hasn't changed.