Closed
Bug 1016348
Opened 11 years ago
Closed 11 years ago
In Firefox for Android 30+, nsIPromptService.promptUsernameAndPassword() aCheckState.value is always returned as false, even if the user checks the checkbox
Categories
(Firefox for Android Graveyard :: General, defect)
Tracking
(firefox29 unaffected, firefox30 fixed, firefox31 fixed, firefox32 fixed, fennec30+)
RESOLVED
FIXED
Firefox 32
| Tracking | Status | |
|---|---|---|
| firefox29 | --- | unaffected |
| firefox30 | --- | fixed |
| firefox31 | --- | fixed |
| firefox32 | --- | fixed |
| fennec | 30+ | --- |
People
(Reporter: drew, Assigned: wesj)
References
Details
(Keywords: regression)
Attachments
(1 file)
|
4.02 KB,
patch
|
Margaret
:
review+
lsblakk
:
approval-mozilla-aurora+
lsblakk
:
approval-mozilla-beta+
|
Details | Diff | Splinter Review |
User Agent: Mozilla/5.0 (Windows NT 6.1; rv:29.0) Gecko/20100101 Firefox/29.0 (Beta/Release)
Build ID: 20140506152807
Steps to reproduce:
1) Within an extension, call nsIPromptService.promptUsernameAndPassword(). For example:
var prompts = Components.classes["@mozilla.org/embedcomp/prompt-service;1"].getService(Components.interfaces.nsIPromptService);
var username = {value: 'test'};
var password = {value: 'test'};
var check = {value: false};
prompts.promptUsernameAndPassword(null, 'test', 'test', username, password, 'test', check);
2) Install the extension into Firefox for Android 30+ (beta channel is currently 30).
3) Run the code.
4) Check the checkbox and submit the dialog.
Actual results:
check.value is false
Expected results:
check.value should be true
| Reporter | ||
Updated•11 years ago
|
OS: Windows 7 → Android
| Reporter | ||
Updated•11 years ago
|
Hardware: x86 → All
Updated•11 years ago
|
Status: UNCONFIRMED → NEW
Ever confirmed: true
Flags: needinfo?(wjohnston)
| Assignee | ||
Updated•11 years ago
|
Assignee: nobody → wjohnston
Flags: needinfo?(wjohnston)
| Assignee | ||
Comment 1•11 years ago
|
||
Fallout from Bug 968908. We're returning real objects now instead of strings so the string to boolean comparison is failing. This just uses the real booleans now.
Attachment #8429563 -
Flags: review?(margaret.leibovic)
Updated•11 years ago
|
Updated•11 years ago
|
Attachment #8429563 -
Flags: review?(margaret.leibovic) → review+
| Assignee | ||
Comment 2•11 years ago
|
||
| Assignee | ||
Comment 3•11 years ago
|
||
Comment on attachment 8429563 [details] [diff] [review]
Patch
[Approval Request Comment]
Bug caused by (feature/regressing bug #): 968908
User impact if declined: Checkboxes on dialogs always return false.
Testing completed (on m-c, etc.): Landed on fx-team just now, but wanted to get a heads up here on the uplift. I think this is important to have fixed on beta.
Risk to taking this patch (and alternatives if risky): This is low risk. Just using a boolean rather than comparing it with a string.
String or IDL/UUID changes made by this patch: None.
Attachment #8429563 -
Flags: approval-mozilla-beta?
Attachment #8429563 -
Flags: approval-mozilla-aurora?
Updated•11 years ago
|
status-firefox29:
--- → unaffected
status-firefox30:
--- → affected
status-firefox31:
--- → affected
status-firefox32:
--- → affected
Comment 4•11 years ago
|
||
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 32
| Reporter | ||
Comment 5•11 years ago
|
||
So this will remain broken in Firefox 30 and 31?
Comment 6•11 years ago
|
||
It's pending approval request
Comment 7•11 years ago
|
||
Comment on attachment 8429563 [details] [diff] [review]
Patch
Looks like a low-risk fix that will help user experience, let's uplift.
Attachment #8429563 -
Flags: approval-mozilla-beta?
Attachment #8429563 -
Flags: approval-mozilla-beta+
Attachment #8429563 -
Flags: approval-mozilla-aurora?
Attachment #8429563 -
Flags: approval-mozilla-aurora+
Comment 8•11 years ago
|
||
Updated•11 years ago
|
tracking-fennec: ? → 30+
Comment 9•11 years ago
|
||
Updated•5 years ago
|
Product: Firefox for Android → Firefox for Android Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•