Closed
Bug 769830
Opened 13 years ago
Closed 7 years ago
appRecord.manifest.installs_allowed_from is not a normal Array
Categories
(Core Graveyard :: DOM: Apps, defect)
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: ianbicking, Unassigned)
Details
Somewhere in serialization Arrays in the manifest are turned into objects like {0: "item 0", 1: "item 1"}
For example:
m = "http://app1.ianbicking.org/manifest.webapp"
navigator.mozApps.install(m).onsuccess = function () {
var i = this.result.manifest.installs_allowed_from;
console.log(i, JSON.stringify(i), i[0], i.length)
};
==> ({0:"*"}) {"0":"*"} * undefined
![]() |
||
Updated•13 years ago
|
Component: Web Apps → DOM: Mozilla Extensions
Product: Firefox → Core
QA Contact: webapps → general
Updated•8 years ago
|
Product: Core → Core Graveyard
Comment 1•7 years ago
|
||
Core Graveyard / DOM: Apps is inactive. Closing all bugs in this component.
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•