Closed
Bug 995844
Opened 11 years ago
Closed 11 years ago
test_dsds_mobile_data_connection.js retrieve mozMobileConnection from a wrong frame
Categories
(Firefox OS Graveyard :: RIL, defect)
Tracking
(tracking-b2g:backlog)
People
(Reporter: vicamo, Assigned: vicamo)
References
Details
(Whiteboard: [p=1])
Attachments
(1 file, 2 obsolete files)
7.45 KB,
patch
|
edgar
:
review+
|
Details | Diff | Splinter Review |
+++ This bug was initially created as a clone of Bug #995107 +++
|let connections = window.navigator.mozMobileConnections;|
http://mxr.mozilla.org/mozilla-central/source/dom/mobileconnection/tests/marionette/test_dsds_mobile_data_connection.js#9
However, when "head.js" is included, we open an iframe and run mobileconnection tests in it instead of current window. Bug 995107 introduced a new global variable "workingFrame" for this.
Assignee | ||
Comment 1•11 years ago
|
||
Assignee: nobody → vyang
Comment 2•11 years ago
|
||
Thank you Vicamo.
Do we need to indicate the working frame to use for cases like [1][2][3], where we get mozMobileConnection for a specific service id?
[1] http://mxr.mozilla.org/mozilla-central/source/dom/mobileconnection/tests/marionette/head.js#285
[2] http://mxr.mozilla.org/mozilla-central/source/dom/mobileconnection/tests/marionette/head.js#410
[3] http://mxr.mozilla.org/mozilla-central/source/dom/mobileconnection/tests/marionette/head.js#470
Assignee | ||
Comment 3•11 years ago
|
||
(In reply to Jessica Jong [:jjong] [:jessica] from comment #2)
> Thank you Vicamo.
>
> Do we need to indicate the working frame to use for cases like [1][2][3],
> where we get mozMobileConnection for a specific service id?
>
> [1]
> http://mxr.mozilla.org/mozilla-central/source/dom/mobileconnection/tests/
> marionette/head.js#285
> [2]
> http://mxr.mozilla.org/mozilla-central/source/dom/mobileconnection/tests/
> marionette/head.js#410
> [3]
> http://mxr.mozilla.org/mozilla-central/source/dom/mobileconnection/tests/
> marionette/head.js#470
Thank you for catching these. Sure, I should correct them all at once. :)
Assignee | ||
Comment 4•11 years ago
|
||
1) use 'workingFrame' whenever necessary,
2) use getNumOfRadioInterfaces instead.
Mnw only: https://tbpl.mozilla.org/?tree=Try&rev=b7fac81d99d6
Attachment #8405950 -
Attachment is obsolete: true
Attachment #8405998 -
Flags: review?(echen)
Updated•11 years ago
|
blocking-b2g: --- → backlog
Comment 5•11 years ago
|
||
Comment on attachment 8405998 [details] [diff] [review]
patch : v2
Review of attachment 8405998 [details] [diff] [review]:
-----------------------------------------------------------------
This patch looks good to me, but I have one question.
Do we need to retrieve mozSettings from 'workingFrame' [1][2] as well?
Thank you.
[1] http://dxr.mozilla.org/mozilla-central/source/dom/mobileconnection/tests/marionette/head.js#96
[2] http://dxr.mozilla.org/mozilla-central/source/dom/mobileconnection/tests/marionette/head.js#123
Attachment #8405998 -
Flags: review?(echen)
Assignee | ||
Comment 6•11 years ago
|
||
(In reply to Edgar Chen [:edgar][:echen] from comment #5)
> Review of attachment 8405998 [details] [diff] [review]:
> -----------------------------------------------------------------
>
> This patch looks good to me, but I have one question.
> Do we need to retrieve mozSettings from 'workingFrame' [1][2] as well?
>
> Thank you.
The first time when Jessica raised this question, I thought mozSettings is unrelated to mozMobileConnection. However, now I suddenly realize that mozSettings related permissions are also only installed in that workingFrame. So, yes, I should have corrected accesses to mozSettings as well. Thank you :)
Assignee | ||
Comment 7•11 years ago
|
||
Address previous comment.
Attachment #8405998 -
Attachment is obsolete: true
Attachment #8407527 -
Flags: review?(echen)
Comment 8•11 years ago
|
||
Comment on attachment 8407527 [details] [diff] [review]
patch : v3
Review of attachment 8407527 [details] [diff] [review]:
-----------------------------------------------------------------
Thank you :)
Attachment #8407527 -
Flags: review?(echen) → review+
Assignee | ||
Comment 9•11 years ago
|
||
Comment 10•11 years ago
|
||
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Updated•10 years ago
|
blocking-b2g: backlog → ---
tracking-b2g:
--- → backlog
You need to log in
before you can comment on or make changes to this bug.
Description
•