From: Leif W <war...@us...> - 2004-05-04 23:14:49
|
Hello, Send plain text please. Which version of DynAPI? If DynAPI 2, I'm not sure. If DynAPI 3, then try getting the source from CVS. See if it's fixed. Is your solution a "patch" to the library or a "workaround" in your app only? In any case, please describe your solution better. Submit the modified files as a patch. Or create unified diffs (diff -u file.old file.new) for each modified file, to make patching easier for the rest of us. :-) Check out cygwin if you're on windows and you have no idea where to get the diff program. I'll try the test case in my (dirty) copy of the CVS. I should get a clean copy and reconcile any differences. Leif ----- Original Message ----- From: Kevin Breynck To: dyn...@li... Sent: Tuesday, May 04, 2004 6:08 AM Subject: [Dynapi-Help] getVisible() BUG in Mozilla Hello, create a layer in Mozilla: ... #testL {position:absolute; left:176px; top: 0px; z-index:10; visibility:hidden;} ... <div id="testL" name="testL"></div> ... If you try to get the visebility in Mozilla... function myVisibleTest () { testDynLayer = DynLayer.getInline("testL"); alert(testDynLayer.getVisible()); } ... Mozilla returns true. (IE returns false) A BUG? (I already have a workaround but could you please fix it?) Thanks Kevin |