Closed
Bug 1133390
Opened 10 years ago
Closed 10 years ago
onfocuschanged(false) will be notified twice.
Categories
(Firefox OS Graveyard :: NFC, defect)
Tracking
(firefox36 wontfix, firefox37 wontfix, firefox38 fixed, b2g-v2.2 fixed, b2g-master fixed)
RESOLVED
FIXED
2.2 S6 (20feb)
People
(Reporter: allstars.chh, Assigned: allstars.chh)
References
Details
(Whiteboard: [p=1])
Attachments
(1 file)
|
1.24 KB,
patch
|
dimi
:
review+
bajaj
:
approval-mozilla-b2g37+
|
Details | Diff | Splinter Review |
Suppose there are two apps(browser-elements) called A and B.
Consider the following calling sequenece:
(1) A.setNFCFocus(true) ----> Gecko
(2) A <---- onFocusChanged(true) Gecko
(3) B.setNFCFocus(true) ----> Gecko
(4) A <---- onFocusChanged(false) Gecko
(5) B <---- onFocusChanged(true) Gecko
(6) A.setNFCFocus(false) ----> Gecko
(7) A <---- onFocusChanged(false) Gecko
In Step 6, setNFCFocus(false) is called on a Browser-Element
which has lost focus already, so step 7 should not be executed.
The onFocusChanged(false) for A is already done in Step 4.
| Assignee | ||
Comment 1•10 years ago
|
||
Attachment #8564843 -
Flags: review?(dlee)
Updated•10 years ago
|
Attachment #8564843 -
Flags: review?(dlee) → review+
| Assignee | ||
Comment 2•10 years ago
|
||
Whiteboard: [p=1]
Target Milestone: --- → 2.2 S6 (20feb)
| Assignee | ||
Comment 3•10 years ago
|
||
Comment on attachment 8564843 [details] [diff] [review]
Patch.
NOTE: Please see https://wiki.mozilla.org/Release_Management/B2G_Landing to better understand the B2G approval process and landings.
[Approval Request Comment]
Bug caused by (feature/regressing bug #):
Bug 1105666
User impact if declined:
Right now we don't find any problem if declined. However we'd like to request to uplift this to prevent some potential problem.
Testing completed:
Manually.
Risk to taking this patch (and alternatives if risky):
No.
String or UUID changes made by this patch:
No
Attachment #8564843 -
Flags: approval-mozilla-b2g37?
Comment 4•10 years ago
|
||
Updated•10 years ago
|
Attachment #8564843 -
Flags: approval-mozilla-b2g37? → approval-mozilla-b2g37+
Comment 5•10 years ago
|
||
status-b2g-v2.2:
--- → fixed
status-b2g-master:
--- → fixed
status-firefox36:
--- → wontfix
status-firefox37:
--- → wontfix
You need to log in
before you can comment on or make changes to this bug.
Description
•