Closed
Bug 549698
Opened 15 years ago
Closed 15 years ago
firefox server push javascript problem
Categories
(Firefox :: General, defect)
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: 6095872, Unassigned)
Details
(Whiteboard: [CLOSEME 2011-1-30])
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)
Build Identifier: mozilla firefox 3.6
we are building a webgame using server-push tech, like the server holds the connections and keep sending javascript tokens to firefox when any new event occur. the javascript token will drive firefox to update the map/players/ etc...
however , firefox will often stop on middle of the tokens, for example, server sends following tokens to firefox:
<script>sv_GameObjectInfo('8', 'hp:5 ');</script>
<script>sv_MapInfoBegin('1','xyxw');</script>
<script>sv_GameObjectCharID(100002,1000);</script>
<script>sv_GameObjectCharID(100001,500);</script>
<script>sv_GameObjectCharID(100000,1000);</script>
<script>sv_MapInfoEnd('1');</script>
often, firefox will execute on <script>sv_MapInfoBegin('1','xyxw');</script>, and then stop to execute followed tokens.
also, sometimes firefox will "delay" to execute the tokens, for example, server sent:
<script>token_1();</script>
<script>token_2();</script>
firefox executes token_1() but not token_2(), soon later, sever sent:
<script>token_3();</script>
firefox then execute token_2(), but not with token_3()...
while IE6,7,8 work well on the same game.
Reproducible: Sometimes
We can make sure those js tokens dont have error, and firefox doesnt have any error or warning on console. It just stop or delay to execute those tokens
Comment 2•15 years ago
|
||
Reporter, are you still seeing this issue with Firefox 3.6.13 or later in safe mode? If not, please close. These links can help you in your testing.
http://support.mozilla.com/kb/Safe+Mode
http://support.mozilla.com/kb/Managing+profiles
You can also try to reproduce in Firefox 4 Beta 8 or later, there are many improvements in the new version, http://www.mozilla.com/en-US/firefox/all-beta.html
Whiteboard: [CLOSEME 2011-1-30]
thanks for tyler's reply, ff 4 beta 8 works perfectly.
ff 3.6.13 still has such problem even on safe mode
Status: UNCONFIRMED → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
Updated•15 years ago
|
Resolution: FIXED → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•