author | Gene Lian <clian@mozilla.com> |
Wed, 09 Jan 2013 15:35:52 +0800 | |
changeset 118132 | 7bce868864bf9d16ff59da3fb560b8016996ae44 |
parent 118131 | 564336aa34f6e002d5890275bf792ccb58a72163 |
child 118133 | e349cfb9114f6124a600d811005c577b0f5eb5f3 |
child 118208 | f36d1129aefbdc26ef93ed94f7f893baf2c22db9 |
push id | 24151 |
push user | dbaron@mozilla.com |
push date | Wed, 09 Jan 2013 08:25:50 +0000 |
treeherder | mozilla-central@7bce868864bf [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | mounir |
bugs | 828161 |
milestone | 21.0a1 |
first release with | nightly linux32
7bce868864bf
/
21.0a1
/
20130109030942
/
files
nightly linux64
7bce868864bf
/
21.0a1
/
20130109030942
/
files
nightly mac
7bce868864bf
/
21.0a1
/
20130109030942
/
files
nightly win32
7bce868864bf
/
21.0a1
/
20130109030942
/
files
nightly win64
7bce868864bf
/
21.0a1
/
20130109030942
/
files
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
releases | nightly linux32
21.0a1
/
20130109030942
/
pushlog to previous
nightly linux64
21.0a1
/
20130109030942
/
pushlog to previous
nightly mac
21.0a1
/
20130109030942
/
pushlog to previous
nightly win32
21.0a1
/
20130109030942
/
pushlog to previous
nightly win64
21.0a1
/
20130109030942
/
pushlog to previous
|
--- a/dom/apps/src/AppsUtils.jsm +++ b/dom/apps/src/AppsUtils.jsm @@ -464,17 +464,17 @@ ManifestHelper.prototype = { return this._origin.resolve(entryPoints[aStartPoint].launch_path || ""); } return null; }, resolveFromOrigin: function(aURI) { // This should be enforced higher up, but check it here just in case. - if (!isAbsoluteURI(aURI)) { + if (isAbsoluteURI(aURI)) { throw new Error("Webapps.jsm: non-relative URI passed to resolveFromOrigin"); } return this._origin.resolve(aURI); }, fullAppcachePath: function() { let appcachePath = this._localeProp("appcache_path"); return this._origin.resolve(appcachePath ? appcachePath : "");