|
From: <ma...@ab...> - 2001-01-09 12:40:11
|
oh i'm sorry, it was me posting the bug, thought i already was logged in.. well /martin > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...]On Behalf Of Pascal > Sent: den 9 januari 2001 10:27 > To: dyn...@li... > Subject: RE: [Dynapi-Dev] [Bug #128146] netscape addChild() bug > > > small request, but if you submit a bug could you atleast specify your name > somewhere, if your not loged on to sourceforge, please type it in the > description or something. > > thanks, > > Pascal Bestebroer (pb...@oi...) > Software ontwikkelaar > Oberon Informatiesystemen b.v. > http://www.oibv.com > > > -----Oorspronkelijk bericht----- > > Van: dyn...@li... > > [mailto:dyn...@li...]Namens > > no...@so... > > Verzonden: dinsdag 9 januari 2001 9:50 > > Aan: no...@so...; no...@so...; > > dyn...@so... > > Onderwerp: [Dynapi-Dev] [Bug #128146] netscape addChild() bug > > > > > > 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: Open > > Resolution: None > > Bug Group: None > > Priority: 5 > > Submitted by: nobody > > Assigned to : nobody > > 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') { > > > > > > > > > > For detailed info, follow this link: > > http://sourceforge.net/bugs/?func=detailbug&bug_id=128146&grou > p_id=5757 > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-dev > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-dev |