From: <no...@so...> - 2001-01-12 19:17:54
|
Bug #128146, was updated on 2001-Jan-09 00:50 Here is a current snapshot of the bug. Project: DynAPI 2 Category: Core API Status: Closed Resolution: Works For Me Bug Group: None Priority: 5 Submitted by: nobody Assigned to : dcpascal Summary: netscape addChild() bug Details: this basic code: DynAPI.onLoad=function() { lay = new DynLayer(null,0,0,280,12,'red'); DynAPI.document.addChild(lay); }; doesn't work under netscape 4.76. ("clip is not defined. ") this is because the clip-check on line 75 (im using the latest files from cvs): if (dlyr.clip!=null) { isn't correct, dlyr.clip is undefined when i check the value. line 272 has the same problems, dlyr.clip is undefined but it only checks for null maybe a possible fix would be: if (dlyr.clip!=null && typeof dlyr.clip!='undefined') { Follow-Ups: Date: 2001-Jan-12 11:18 By: dcpascal Comment: Just tested with latest CVS code, and it works correctly, without error calls. ------------------------------------------------------- For detailed info, follow this link: http://sourceforge.net/bugs/?func=detailbug&bug_id=128146&group_id=5757 |