Closed
Bug 196474
Opened 22 years ago
Closed 21 years ago
pop-up icon should appear in status bar before "about popup blocking" appears
Categories
(Firefox :: General, defect, P3)
Tracking
()
RESOLVED
FIXED
Firefox0.9
People
(Reporter: jruderman, Assigned: mconnor)
References
Details
Attachments
(1 file, 3 obsolete files)
858 bytes,
patch
|
p_ch
:
review+
|
Details | Diff | Splinter Review |
Steps to reproduce:
1. Remove user_pref("privacy.popups.firstTime", false); from prefs.js.
2. Visit http://www.aol.com/ .
Result: A dialog appears explaining what the status bar icon means. Once you
close the dialog, the status bar icon appears.
Expected: The status bar icon should appear before the dialog appears.
I'm using Phoenix 03/04 on Windows XP. I haven't tested whether this bug is
also present in Mozilla, because I don't know how to reset pop-up blocking in
Mozilla.
Assignee | ||
Comment 2•21 years ago
|
||
-> taking
easily enough fixed, just moving some code around
Assignee: blake → mpconnor
Assignee | ||
Comment 3•21 years ago
|
||
Assignee | ||
Updated•21 years ago
|
Attachment #131415 -
Flags: review?(noririty)
Reporter | ||
Comment 4•21 years ago
|
||
setTimeout("displayPageReportFirstTime();",50);
should be
setTimeout(displayPageReportFirstTime, 50);
I prefer the second syntax because the second syntax is more efficient and
because the first syntax can lead to security holes like bug 87980 if you pass
untrusted string parameters without escaping them.
Assignee | ||
Updated•21 years ago
|
Attachment #131415 -
Attachment is obsolete: true
Attachment #131415 -
Flags: review?(noririty)
Assignee | ||
Comment 5•21 years ago
|
||
Assignee | ||
Comment 6•21 years ago
|
||
Comment on attachment 131532 [details] [diff] [review]
patch that addresses Jesse's comments
at this rate, noririty's review queue will be fricking huge :)
Attachment #131532 -
Flags: review?(noririty)
Assignee | ||
Updated•21 years ago
|
Status: NEW → ASSIGNED
Updated•21 years ago
|
QA Contact: asa
Assignee | ||
Updated•21 years ago
|
Priority: -- → P3
Target Milestone: --- → Firebird0.8
Assignee | ||
Updated•21 years ago
|
Attachment #131532 -
Flags: review?(noririty) → review?(p_ch)
Assignee | ||
Comment 8•21 years ago
|
||
Comment on attachment 131532 [details] [diff] [review]
patch that addresses Jesse's comments
going to shorten the timeout, patch coming in a bit
Attachment #131532 -
Attachment is obsolete: true
Attachment #131532 -
Flags: review?(p_ch)
Assignee | ||
Comment 9•21 years ago
|
||
Assignee | ||
Updated•21 years ago
|
Attachment #140133 -
Flags: review?(p_ch)
Comment 10•21 years ago
|
||
Comment on attachment 140133 [details] [diff] [review]
pch sez 10 is enough
I changed my mind. this delay is somewhat arbitrary and for some slow machine,
the icon may not appear.
This dialog should not be modal, from the gnome human interface guidelines:
"Use an application modal window only if allowing interaction with other parts
of the application while the window is open could cause data loss or some other
serious problem."
you should just replace "modal" with "dependent" in
displayPageReportFirstTime()
Attachment #140133 -
Flags: review?(p_ch) → review-
Assignee | ||
Comment 12•21 years ago
|
||
Comment on attachment 142537 [details] [diff] [review]
use dependent instead of modal dialog
maybe we should do this in other places too?
Attachment #142537 -
Flags: review?(p_ch)
Comment 13•21 years ago
|
||
Comment on attachment 142537 [details] [diff] [review]
use dependent instead of modal dialog
> maybe we should do this in other places too?
Mike, it would be great if you could review the modality of our dialogs !
Attachment #142537 -
Flags: review?(p_ch) → review+
Assignee | ||
Comment 14•21 years ago
|
||
fix checked in 02/28/2004 18:41
Status: ASSIGNED → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Comment 15•21 years ago
|
||
*** Bug 238647 has been marked as a duplicate of this bug. ***
You need to log in
before you can comment on or make changes to this bug.
Description
•