> > 2. The timeline is sluggish and not smooth in Firefox. Is this known > > issue; how can I solve it? > > > Timeline can certainly be optimized further by analyzing its generation > of the HTML DOM. There's no immediate plan to do that. If you find out > how to speed it up, we surely welcome a code patch!
is keeping a cache of the common Timeline elements (so that createElement isn't run over and over), cloning them and adjusting instance-specific properties faster? imo firefox is primarily hobbled by poor 2d drivers on linux (particularly ATI). try webkit-gdk. or try firefox 3.0 with glitz, if your card has working 3d accel.. in ~/.mozconfig: ac_add_options --enable-default-toolkit=cairo-gtk2 ac_add_options --enable-glitz to build: #!/bin/sh cd /usr/src/ && \ rm -rf mozilla && \ cvs -d :pserver:anonymous:[EMAIL PROTECTED]:/cvsroot co mozilla/client.mk && \ cd mozilla && \ make -f client.mk checkout MOZ_CO_PROJECT=browser && \ ./configure && make -j4 && \ make install _______________________________________________ General mailing list [email protected] http://simile.mit.edu/mailman/listinfo/general
