Firefox Crashes During the Night(?)

Bug #243520 reported by richbl
12
Affects Status Importance Assigned to Milestone
Mozilla Firefox
Fix Released
Medium
firefox-3.0 (Ubuntu)
Fix Released
Undecided
Unassigned

Bug Description

Binary package hint: firefox

I hate to report such an unusual bug, but it's happened numerous times now, and I can't seem to get a better understanding on why it's failing. So...

DOES:

0) From cli, start firefox (version 3.0)
1) Wait (typically overnight, though I still don't know why "overnight" has any value... maybe wait a very long time is better?
2) Note that Firefox is no longer running

Reviewing the cli output, here's what I see:

cairo context error: NULL pointer
cairo context error: NULL pointer
cairo context error: NULL pointer
(firefox:16660): Gdk-CRITICAL **: gdk_draw_image: assertion `GDK_IS_GC (gc)' failed
(firefox:16660): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
(firefox:16660): Gdk-CRITICAL **: gdk_draw_image: assertion `GDK_IS_GC (gc)' failed
(firefox:16660): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
GCJ PLUGIN: thread 0x805f138: NP_GetMIMEDescription
GCJ PLUGIN: thread 0x805f138: NP_GetMIMEDescription return
GCJ PLUGIN: thread 0x805f138: NP_GetValue
GCJ PLUGIN: thread 0x805f138: NP_GetValue: returning plugin name.
GCJ PLUGIN: thread 0x805f138: NP_GetValue return
GCJ PLUGIN: thread 0x805f138: NP_GetValue
GCJ PLUGIN: thread 0x805f138: NP_GetValue: returning plugin description.
GCJ PLUGIN: thread 0x805f138: NP_GetValue return
firefox: pcm_pulse.c:275: pulse_write: Assertion `pcm->last_size >= (size * pcm->frame_size)' failed.

Note that this last message is what appears to show up when Firefox officially dies. I believe the preceding messages are generated during normal Firefox operation.

SHOULD:

0) Firefox should not crash

I currently have the following add-ons installed in Firefox:

--FireFTP 0.99.1
--AdBlock Plus 0.7.5.5
--Ubuntu Firefox Modifications 0.5
--URL Link 2.02.2
--Foxmarks Bookmark Synchronizer 2.0.47.4

To limit the potential causes of this bug, I will begin removing add-ons one-by-one to see if I can still repro this bug.

Revision history for this message
In , Jonathan Watt (jwatt) wrote :

To give slightly more technical detail, it's nsObjectLoadingContent::HasNewFrame that posts the nsAsyncInstantiateEvent to the event loop when the embedding element is reflowed (at least in the case when the embedding element is an <object>). HasNewFrame is currently only called from nsObjectFrame::DidReflow.

Revision history for this message
In , Shanec (shanec) wrote :

*** Bug 439146 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Shanec (shanec) wrote :

I have a patch in bug 439146 that fixes this for us, just not sure if it's the right way to fix this issue. It checks to see if the plugin instance exists, if if it does, prevents the second instantiation which causes the unload/reload.

Revision history for this message
In , Shanec (shanec) wrote :

Once the dust settles (fx 3 release) I'd like to get some feedback on the patch.

Revision history for this message
In , Jst (jst) wrote :

Shane, can you show a stack of how this double-instantiation happens? I.e. break in your patch where you return early due to an instance already existing in the frame. Also, pelase attach that patch to this bug as well, makes it easier to talk about...

Revision history for this message
In , Shanec (shanec) wrote :

Here's a traceback from placing a call to Debugger where I was returning if a plugin instance existed.

Breakpoint 1, 0x95c7d86d in Debugger ()
(gdb) bt
#0 0x95c7d86d in Debugger ()
#1 0x09e6b54b in nsObjectLoadingContent::Instantiate ()
#2 0x09e6b79e in nsAsyncInstantiateEvent::Run ()
#3 0x001bd6da in nsThread::ProcessNextEvent ()
#4 0x0017dcb7 in NS_ProcessPendingEvents_P ()
#5 0x007bbd22 in nsBaseAppShell::NativeEventCallback ()
#6 0x0078c99a in nsAppShell::ProcessGeckoEvents ()
#7 0x930a462e in CFRunLoopRunSpecific ()
#8 0x930a4d18 in CFRunLoopRunInMode ()
#9 0x961976a0 in RunCurrentEventLoopInMode ()
#10 0x961973f2 in ReceiveNextEventCommon ()
#11 0x9619732d in BlockUntilNextEventMatchingListInMode ()
#12 0x920ae7d9 in _DPSNextEvent ()
#13 0x920ae08e in -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] ()
#14 0x920a70c5 in -[NSApplication run] ()
#15 0x0078bcfa in nsAppShell::Run ()
#16 0x005c8367 in nsAppStartup::Run ()
#17 0x0004ce15 in XRE_main ()
#18 0x00005c04 in main ()

Revision history for this message
In , Shanec (shanec) wrote :

Created attachment 325668
double-instantiate.patch

Revision history for this message
In , Polidobj (polidobj) wrote :

See also bug 441424 which sounds like this problem too.

Revision history for this message
In , Tristan Schmelcher (tschmelcher) wrote :

Hi, I can confirm this bug and also that Shane's patch works. I actually independently made a near-identical patch and put it on bug 90268. :)

FYI, if you're a webpage developer then an easy workaround to get your page working with FF3 is to delay accessing any plugins until after your page has fully loaded. An easy way to do this is to schedule your plugin scripting code to run after all pending browser events using window.setTimeout with a timeout of zero.

Alternatively, if you are an NPAPI plugin developer and your plugin gets given a callback function by the webpage, then you get your plugin working with FF3 on broken webpages by invoking some callback that will cause the webpage to immediately access your plugin. When it accesses your plugin, that runs nsObjectLoadingContent::EnsureInstantiation, which cancels any pending nsAsyncInstantiateEvents, even when already instantiated. Hence if you invoke such a callback at just the right time then it will cancel the pending unload/reload. It's hard to get the timing right though.

Revision history for this message
In , Jst (jst) wrote :

Created attachment 326964
Stop double instantiation even earlier.

This is based on Shane's earlier fix, but moves it even earlier in the process. The problem is that we end up in some cases instantiating the plugin from JS (due to JS content policy implementations or actions by the page etc), and then once the plugin frame is reflown, we don't notice that its plugin has already been instantiated so we re-instantiate (asynchronously). This patch makes us detect that the new frame already has a plugin in it, and doesn't even post the event to asynchronously instantiate the (already instantiated) plugin.

Bug 441424 has a good testcase for this problem, using an extension that contains a JS content policy implementation.

Shane, if you can test this patch as well (and Tristan too, if you have time to test yet another patch!), I'd really appreciate it.

Revision history for this message
In , Jst (jst) wrote :

*** Bug 441424 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Shanec (shanec) wrote :

(In reply to comment #10)
> Shane, if you can test this patch as well (and Tristan too, if you have time to
> test yet another patch!), I'd really appreciate it.
>

It seems to work fine, I'll have a couple other people here test it as well.

Revision history for this message
In , Trev-moz (trev-moz) wrote :

Note that I have received a large number of bug reports after Firefox 3 release - those might very well be duplicates of this bug or not but I simply don't have the time to investigate all of them. Examples:

https://www.mozdev.org/bugs/show_bug.cgi?id=19414
https://www.mozdev.org/bugs/show_bug.cgi?id=19304
http://adblockplus.org/forum/viewtopic.php?t=2586
http://adblockplus.org/forum/viewtopic.php?t=2539
http://adblockplus.org/forum/viewtopic.php?t=2574

Revision history for this message
In , Jst (jst) wrote :

This is definitely wanted for 1.9.0.1, it's a regression and it's hurting plugin content developers especially hard (per bug 441424).

Revision history for this message
richbl (richbl) wrote :

Binary package hint: firefox

I hate to report such an unusual bug, but it's happened numerous times now, and I can't seem to get a better understanding on why it's failing. So...

DOES:

0) From cli, start firefox (version 3.0)
1) Wait (typically overnight, though I still don't know why "overnight" has any value... maybe wait a very long time is better?
2) Note that Firefox is no longer running

Reviewing the cli output, here's what I see:

cairo context error: NULL pointer
cairo context error: NULL pointer
cairo context error: NULL pointer
(firefox:16660): Gdk-CRITICAL **: gdk_draw_image: assertion `GDK_IS_GC (gc)' failed
(firefox:16660): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
(firefox:16660): Gdk-CRITICAL **: gdk_draw_image: assertion `GDK_IS_GC (gc)' failed
(firefox:16660): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
GCJ PLUGIN: thread 0x805f138: NP_GetMIMEDescription
GCJ PLUGIN: thread 0x805f138: NP_GetMIMEDescription return
GCJ PLUGIN: thread 0x805f138: NP_GetValue
GCJ PLUGIN: thread 0x805f138: NP_GetValue: returning plugin name.
GCJ PLUGIN: thread 0x805f138: NP_GetValue return
GCJ PLUGIN: thread 0x805f138: NP_GetValue
GCJ PLUGIN: thread 0x805f138: NP_GetValue: returning plugin description.
GCJ PLUGIN: thread 0x805f138: NP_GetValue return
firefox: pcm_pulse.c:275: pulse_write: Assertion `pcm->last_size >= (size * pcm->frame_size)' failed.

Note that this last message is what appears to show up when Firefox officially dies. I believe the preceding messages are generated during normal Firefox operation.

SHOULD:

0) Firefox should not crash

I currently have the following add-ons installed in Firefox:

--FireFTP 0.99.1
--AdBlock Plus 0.7.5.5
--Ubuntu Firefox Modifications 0.5
--URL Link 2.02.2
--Foxmarks Bookmark Synchronizer 2.0.47.4

To limit the potential causes of this bug, I will begin removing add-ons one-by-one to see if I can still repro this bug.

Revision history for this message
Thomas Kluyver (takluyver) wrote :

It may be quicker to start by disabling all addons, seeing if it still does it, then adding them back in to see where it fails. That way, if it's a problem with firefox, not the plugins, you will find that out much quicker ;-)

Also, don't forget to disable plugins--particularly if you have adobe's flash player (flashplugin-nonfree), which often causes troubles.

Finally, does it depend on what website you leave firefox open at?

Revision history for this message
In , Jonas-sicking (jonas-sicking) wrote :

Comment on attachment 326964
Stop double instantiation even earlier.

Are you sure aFrame is never null when nsObjectLoadingContent::HasNewFrame is called?

r/sr=me if so

Revision history for this message
In , Jst (jst) wrote :

(In reply to comment #15)
> (From update of attachment 326964 [details])
> Are you sure aFrame is never null when nsObjectLoadingContent::HasNewFrame is
> called?

Yes, the only caller:

http://mxr.mozilla.org/mozilla-central/source/layout/generic/nsObjectFrame.cpp#1060

always passes in |this|, and passing no frame to HasNewFrame() makes no sense to me.

Revision history for this message
In , Mike-morearty (mike-morearty) wrote :

I just tried the patch, and it looks good to me -- it does fix the problems I was seeing.

Revision history for this message
In , Jst (jst) wrote :

Awesome, thanks! This was just checked in, closing bug.

Revision history for this message
In , Jst (jst) wrote :

Comment on attachment 326964
Stop double instantiation even earlier.

I've heard several times now in bugzilla and/or private email that this is causing lots of trouble in many plugins. I think it's worth taking on the branch.

Revision history for this message
In , Shanec (shanec) wrote :

another potential dup in bug 442479

Revision history for this message
In , Shanec (shanec) wrote :

*** Bug 442666 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Shanec (shanec) wrote :

(In reply to comment #18)
> Awesome, thanks! This was just checked in, closing bug.
>

Where was this checked in? I don't see it in CVS trunk. Can we get it for 1.9.0.*?

Revision history for this message
In , Samuel-sidler+old (samuel-sidler+old) wrote :

(In reply to comment #22)
> Where was this checked in? I don't see it in CVS trunk. Can we get it for
> 1.9.0.*?

It was checked in on mozilla-central. There's an approval request for the patch to land in 1.9.0.1.

Revision history for this message
In , Tom-finegan (tom-finegan) wrote :

The 20080628 Minefield build appeared to have the patch-- at least, the double instantiation behavior had stopped. The build still leaks instances of plugIn interface objects.

I'll update bug 434547 re the leaks as they don't really seem to fit in this bug...

Revision history for this message
richbl (richbl) wrote :

After some additional troubleshooting, it appears that the crashing bug is generated by the Adblock Plus 0.7.5.5 add-on.

If the add-on is enabled, Firefox will crash (see error messages above). If the add-on is disabled, Firefox--to date--has not crashed.

I have made some requests in the Adblock Plus forum, asking for further details on troubleshooting some further debug details.

More to come.

Revision history for this message
In , Philip-chee (philip-chee) wrote :

Did this ever get checked in on 1.9.0.1?

Revision history for this message
In , Samuel-sidler+old (samuel-sidler+old) wrote :

(In reply to comment #25)
> Did this ever get checked in on 1.9.0.1?

No. It got checked into mozilla-central for 1.9.1 and has an approval requested (approval1.9.0.2?) for landing on the 1.9 branch.

Revision history for this message
In , Samuel-sidler+old (samuel-sidler+old) wrote :

Anyway we can get a test for this? Maybe from the work in bug 441424?

Revision history for this message
In , Philip-chee (philip-chee) wrote :

> Anyway we can get a test for this? Maybe from the work in bug 441424?

Well the test case there involves an extension (greasemonkey) or some way to access nsIContentPolicy and then setting a breakpoint in the debugger, a breakpoint that would bit rot as the code changes.

This bug also caused the regression bug 445520. So perhaps we should wait to see how that is resolved.

Revision history for this message
ces (goodmorning-no) wrote :

I have the exact same bug. Same symptoms (leave firefox overnight and it crashes) and the exact same final messages in the output before it aborts. And I also have Adblock 0.7.5.5 :D I haven't tried disabling Adblock Plus yet, but will try to confirm (yeah, I'm basically just confirming the original bug report ^^).

Revision history for this message
richbl (richbl) wrote :

To date, I haven't received any confirmation from the Adblock Plus folks, short of a link to a possible dupe at https://bugzilla.mozilla.org/show_bug.cgi?id=438830.

According to that bug, it appears to be an issue related to Firefox, and will be fixed in release >3.01.

Revision history for this message
In , Mike-morearty (mike-morearty) wrote :

Just wanted to ping this. At last report (7/19/08), this bug has an approval requested for 1.9.0.2.

I am not really familiar with Mozilla version numbers -- should I think of "1.9.0.2" as roughly corresponding to Firefox 3.0.2?

Also, I take it the approval for 1.9.0.2 is still pending? I guess basically my point is, I'd like to keep an eye on this bug to make sure it makes it into Firefox 3.0.2, but I don't really understand how I can do that -- e.g. when and where does this approval request get considered. Thanks!

Revision history for this message
In , Samuel-sidler+old (samuel-sidler+old) wrote :

Mike, this will get approved when we have a resolution to bug 445520, which appears to be a regression from this bug.

Revision history for this message
In , Trev-moz (trev-moz) wrote :

Both is correct - Gecko 1.9.0.2 corresponds with Firefox 3.0.2, and this patch is still waiting for approval to land before Firefox 3.0.2 release :-(

Revision history for this message
In , Robertburke (robertburke) wrote :

Please see Bug 445599 (apparently a dup of this bug) for another test case around *this* bug. I also have a working demo of the bug here: http://homepages.rootsweb.ancestry.com/~reburke/work/Firefox3Bug/ff3buginfo.html

Note that in bug 445520 (related to this bug), swfobject 1.5 is mentioned. I found that upgrading swfobject to 2.1 fixes the problem for me described in *this* bug report. The basic difference is that swfobject 2.1 embeds flash with an embed tag, whereas swfobject 2.1 embeds flash with an object tag (with nested param tags). In FF 3.0.1, if you embed flash with an embed tag, and you have certain add-ons such as Greasemonkey, the flash runtime initializes twice due to plugin being initialized twice (see my NSPR logging in Bug 445599).

Anyhow, I think the clue here may be the way in which FF 3.0.1 handles the embed tag, as opposed to how FF 2 handled it.

Revision history for this message
In , Robertburke (robertburke) wrote :

Correction to previous post:

swfobject 1.5 embeds flash with an embed tag

swfobject 2.1 embeds flash with an object tag

Revision history for this message
richbl (richbl) wrote :

As of the Firefox 3.01 update, I have not yet had Firefox crash as described in this bug.

I'd be happy to close this bug, and if this bug is exercised again in the future, I will be happy to re-open it.

Changed in firefox:
status: Unknown → Fix Released
Revision history for this message
In , Samuel-sidler+old (samuel-sidler+old) wrote :

Comment on attachment 326964
Stop double instantiation even earlier.

Approved for 1.9.0.2. Please land in CVS. a=ss

Revision history for this message
In , Jst (jst) wrote :

Fix landed in CVS.

Revision history for this message
In , Reed Loden (reed) wrote :

Backed out on CVS HEAD.

Revision history for this message
In , Samuel-sidler+old (samuel-sidler+old) wrote :

Comment on attachment 326964
Stop double instantiation even earlier.

Pushing this out to 1.9.0.3.

Revision history for this message
In , Supernova00 (supernova00) wrote :

Shouldn't this be reopened then if it was backed out?

Revision history for this message
In , Trev-moz (trev-moz) wrote :

It wasn't backed out on trunk - only on 1.9 branch. So technically this is still FIXED.

Revision history for this message
In , Jst (jst) wrote :

:(

Revision history for this message
In , Mange72 (mange72) wrote :

Since this will not be solved until "earliest" 1.9.0.3, we need to update our customers about the progress.

1. Why is the solution backed out?
2. What is the time schedule for 1.9.0.3? Q3/Q4-2008 or Q1 2009, any prediction would be nice.

Currently our solution is to downgrade our end-users to FireFox 2.0, but have no idea how long this will be accepted.

Revision history for this message
In , Trev-moz (trev-moz) wrote :

(In reply to comment #41)
> 1. Why is the solution backed out?

Bug 445520

> 2. What is the time schedule for 1.9.0.3? Q3/Q4-2008 or Q1 2009, any
> prediction would be nice.

Minor releases appear roughly once a month - meaning October.

Revision history for this message
In , Trev-moz (trev-moz) wrote :

Sorry, bug 450949 is the one blocking that right now.

Revision history for this message
In , Phillip-whelan (phillip-whelan) wrote :

Can anyone confirm if this is the same issue as Bug 451816, that bug is still in the unconfirmed stage, it doesn't seem to be related to adblock extensions or anything like that.

This is causing endless amounts of problems for me.

Revision history for this message
In , Jst (jst) wrote :

This is unrelated to the problem in bug 451816.

Revision history for this message
Conn O Griofa (psyke83) wrote :

richbl,

Were you testing Luke Yelavich's PulseAudio packages? You may have been suffering from bug #262326 which is now fixed. If so, please mark this bug as a duplicate.

Revision history for this message
richbl (richbl) wrote :

Conn,

No, I wasn't testing Yelavich's PulseAudio package. To date, as of Firefox 3.01, I have not had Firefox crash as initially described.

As indicated in a prior comment, I'd be happy to close this out as fixed if there are no objections.

Revision history for this message
In , Mikael Olofsson (michlos) wrote :

Was this one included in 3.0.2 or will it be shipped in 3.0.3?

Revision history for this message
In , Dbcooper-nz (dbcooper-nz) wrote :

(In reply to comment #46)
> Was this one included in 3.0.2 or will it be shipped in 3.0.3?

I reproduced it last night during browsing (on 3.0.3), so I would say no ...

Would be nice if it was fixed in 3.0.4

Revision history for this message
In , Supernova00 (supernova00) wrote :

(In reply to comment #47)
> (In reply to comment #46)
> > Was this one included in 3.0.2 or will it be shipped in 3.0.3?
> I reproduced it last night during browsing (on 3.0.3), so I would say no ...
> Would be nice if it was fixed in 3.0.4

The flag for the patch has "samuel.sidler: approval1.9.0.4?" So they are trying to get approval to land this for Gecko 1.9.0.4 (Firefox 3.0.4)

Revision history for this message
In , Samuel-sidler+old (samuel-sidler+old) wrote :

We won't block on this but will look at approval when the regression from bug 445520 (bug 450949) is fixed.

Revision history for this message
In , Dveditz (dveditz) wrote :

Comment on attachment 326964
Stop double instantiation even earlier.

Can't approve this with open regressions. When the regressions are fixed please create a roll-up patch if you're going to request approval

Revision history for this message
In , Dtownsend (dtownsend) wrote :

*** Bug 445599 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Dtownsend (dtownsend) wrote :

*** Bug 465374 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Mikael Olofsson (michlos) wrote :

What is holding this one? Is it 450949?

This one is creating a lot of headache for us to say the least.

Revision history for this message
In , John-allberg (john-allberg) wrote :

This one is creating a lot of headache for us to say the least.

Revision history for this message
In , Dveditz (dveditz) wrote :

It's way too late for 1.9.0.5, moving out request. But really, it's bug 450949 you need on the list.

Revision history for this message
In , Mange72 (mange72) wrote :

How is bug fixing actually supposed to work for this software? This bug was fixed 5 months ago, and have been moved forward a lot of times... Are we supposed to vote for the "blocking" bug or are we supposed to update our support page with a link to this bug, so our customers starts to vote for this bug each time we tell them to downgrade to FireFox 2.0!

Our problem is that we have quite some installed base on different goverment services using our plugin. Goverment means they are very slow on any type of updates for there web pages, so the only possible workaround is to downgrade the web browser.

I agree: "This one is creating a lot of headache for us to say the least."

Revision history for this message
In , John-allberg (john-allberg) wrote :

In the next release of our services we will not accept FF3 users and we will point them to this bug and recommend them to vote.

Revision history for this message
In , Dveditz (dveditz) wrote :

Blocking on this assuming we can take the regression bug 450949 in stride. Will need to take the regression fix in bug 445520 as well.

Revision history for this message
In , Dveditz (dveditz) wrote :

Comment on attachment 326964
Stop double instantiation even earlier.

bug 450949 is now resolved by a newer Shockwave, lets try to get this and bug 445520 in.

Revision history for this message
Martin Mai (mrkanister-deactivatedaccount-deactivatedaccount) wrote :

I am closing it because the bug has been fixed upstream. Thanks.

Changed in firefox-3.0:
status: New → Fix Released
Revision history for this message
In , Mikael Olofsson (michlos) wrote :

What is the status on this one? Implemented or getting ready to?

Revision history for this message
In , Dveditz (dveditz) wrote :

Comment on attachment 326964
Stop double instantiation even earlier.

Approved for 1.9.0.6, a=dveditz for release-drivers

Revision history for this message
In , Jst (jst) wrote :

Fix landed in CVS again.

Revision history for this message
In , Abillings (abillings) wrote :

Verified fixed in 1.9.0.6 with Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.0.6pre) Gecko/2009011304 GranParadiso/3.0.6pre.

Revision history for this message
In , Djst-mozilla (djst-mozilla) wrote :

(In reply to comment #57)
> In the next release of our services we will not accept FF3 users and we will
> point them to this bug and recommend them to vote.

From Jonas Sicking:

"So there is good news and bad. This bug has been
fixed since Firefox 3.0.6. I just attempted using Firefox 3.0.7 with a
spoofed UA string to look like Firefox 2, and things mostly works. Was
able to install the e-legitimation and use it to log in to the test
site. I was not however able to the e-legitimation to sign something.
The dialog for signing comes up, but I can't type in it or click any
buttons. I just tested in firefox 2 and things work correctly there."

So something is still wrong, but it's no longer this particular bug. Jonas, since it works in Firefox 2, it sounds like we have an opportunity to compare what's going on. Is any help needed from e.g. TeliaSonera at this point?

John Allberg: are you, or could you get us in contact with one of your developers in case we need help finding the cause of this (new) problem? Note: I'm asking on behalf of Jonas Sicking. I'm not a developer myself, but I work from Sweden and you can certainly use my e-mail if you want to get in touch. Also, do you have the link to the error page where you tell customers to vote for this bug? I think that should be replaced with something else as it's probably just confusing/frustrating to customers.

Thanks!

Revision history for this message
In , Micaelas222 (micaelas222) wrote :

 Bug 438830 plz help me...remove this bug...i cant logg on in my legitimation fr school because of it....what to do???

Revision history for this message
In , Jst (jst) wrote :

michaela, we'd love to help you, but whoever told you that the reason for not being able to log in because of this bug is wrong because this bug has already been fixed (Status RESOLVED FIXED). Please inform whomever pointed you at this bug that they are referring to the wrong bug, and we need help figuring out what is not working and why with regards to e-legitimation websites. Please help us help you, this bug is NOT the problem.

Revision history for this message
In , Djst-mozilla (djst-mozilla) wrote :

Even better, Michaela, could you point out the page that instructed you to visit this bug report? That would be very helpful for us in order to know who we should get in touch with to fix the underlying problem.

Thanks!

Revision history for this message
In , Andreas Järliden (aeriksson) wrote :

It is Telia (www.telia.se), a swedish telephone company. The support number is +46-771-323262 for the electronic id service that claims that this bug prevents them from supporting firefox 3.

Revision history for this message
In , Djst-mozilla (djst-mozilla) wrote :

Thanks to Andreas, I finally found the page where Telia links to this bug: https://cve.trust.telia.com/testa/Step2CheckOsBrowser.aspx.

Interestingly, they don't seem to support Safari either, making the choice very limited for users (basically Firefox 2.0!).

Jonas, Johnny: if you don't disagree, I can call Telia up first thing tomorrow and try to get in touch with one of their developers so we can work together on getting the real problem solved.

Revision history for this message
In , Cl-bugs-new2 (cl-bugs-new2) wrote :

Can someone please open a TE bug so that we don't have to continue tracking this in a FIXED bug?

Revision history for this message
In , Nauwnauw (nauwnauw) wrote :

Hello,
The problem seems to be fixed for you but I have allways the problem.

Here is my test page :
http://www.bauret.be/flash3/readme.html

The first time you open the page you need to click to see the video load in autoplay :-(

Is it the same bug ?
How can I fix it ?

Thx

Arnaud

Revision history for this message
In , Nauwnauw (nauwnauw) wrote :

Hello,

No body for my problem plz ?

Thx

Arnaud

Revision history for this message
In , Cl-bugs-new2 (cl-bugs-new2) wrote :

Arnaud, Bugzilla is not a support forum. Please use the support forums at

http://forums.mozillazine.org/

for support questions.

Revision history for this message
In , Terhi-gmx (terhi-gmx) wrote :

2009-03-19 David wrote:

"Jonas, Johnny: if you don't disagree, I can call Telia up first thing tomorrow
and try to get in touch with one of their developers so we can work together on
getting the real problem solved."

Did you call them? They still ask you to use FF 2 when applying for E-legitimation. I tried today.
My bank SEB, called Telia today and they said the problem remains. Telia still links to this bug http://tinyurl.com/kt9gcl. Maybe there is an another one?

SEB gave me a phone no to call if I wanted: 0771-323262 (Telia, Sweden).

/ Terhi

Revision history for this message
In , Jonas-sicking (jonas-sicking) wrote :

I've talked with people at Telia. The remaining issues are unrelated to this bug, but rather related to changes made to use cocoa widgets in Firefox 3 on Mac. The issue appears to be known on their end, but I don't know what the timeline for fixing it is.

I also asked them to remove the reference to this bug, though maybe that hasn't happened yet?

Changed in firefox:
importance: Unknown → Medium
Revision history for this message
In , Kverlin (kverlin) wrote :

I can still see this with Flowplayer in FF12. According to Firebug, flowplayer.swf is loaded twice per player creation.

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.