Skip to content

Commit

Permalink
Bug 1129650 - Touching navigator.mozId causes an error NS_ERROR_FACTO…
Browse files Browse the repository at this point in the history
…RY_NOT_REGISTERED. r=baku
  • Loading branch information
rmottola committed Aug 17, 2019
1 parent caa6c68 commit 3e60c1a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 16 deletions.
3 changes: 0 additions & 3 deletions browser/installer/package-manifest.in
Expand Up @@ -556,9 +556,6 @@
@RESPATH@/components/Webapps.manifest
@RESPATH@/components/AppsService.js
@RESPATH@/components/AppsService.manifest
@RESPATH@/components/nsDOMIdentity.js
@RESPATH@/components/nsIDService.js
@RESPATH@/components/Identity.manifest
@RESPATH@/components/recording-cmdline.js
@RESPATH@/components/recording-cmdline.manifest
@RESPATH@/components/htmlMenuBuilder.js
Expand Down
2 changes: 1 addition & 1 deletion dom/moz.build
Expand Up @@ -89,7 +89,6 @@ DIRS += [
'indexedDB',
'system',
'ipc',
'identity',
'workers',
'camera',
'audiochannel',
Expand Down Expand Up @@ -146,6 +145,7 @@ if CONFIG['MOZ_SECUREELEMENT']:
if CONFIG['MOZ_B2G']:
DIRS += [
'downloads',
'identity',
'mobileid',
'engineeringmode'
]
Expand Down
6 changes: 5 additions & 1 deletion dom/webidl/moz.build
Expand Up @@ -245,7 +245,6 @@ WEBIDL_FILES = [
'IDBRequest.webidl',
'IDBTransaction.webidl',
'IDBVersionChangeEvent.webidl',
'Identity.webidl',
'ImageCapture.webidl',
'ImageData.webidl',
'ImageDocument.webidl',
Expand Down Expand Up @@ -826,3 +825,8 @@ if CONFIG['MOZ_PAY']:
WEBIDL_FILES += [
'MozPaymentProvider.webidl'
]

if CONFIG['MOZ_B2G']:
WEBIDL_FILES += [
'Identity.webidl'
]
12 changes: 1 addition & 11 deletions toolkit/identity/tests/unit/xpcshell.ini
@@ -1,7 +1,7 @@
[DEFAULT]
head = head_identity.js
tail = tail_identity.js
skip-if = toolkit == 'gonk'
skip-if = (appname != "b2g" || toolkit == 'gonk')
support-files =
data/idp_1/.well-known/browserid
data/idp_invalid_1/.well-known/browserid
Expand All @@ -14,21 +14,11 @@ support-files =
[test_identity_utils.js]
[test_log_utils.js]
[test_authentication.js]
# Identity modules aren't packaged on Android.
skip-if = os == "android"
[test_crypto_service.js]
skip-if = os == "android"
[test_identity.js]
skip-if = os == "android"
[test_jwcrypto.js]
skip-if = os == "android"
[test_observer_topics.js]
skip-if = os == "android"
[test_provisioning.js]
skip-if = os == "android"
[test_relying_party.js]
skip-if = os == "android"
[test_store.js]
[test_well-known.js]
# Bug 905340 - http port dependency causes failure on Android 4.0
skip-if = os == "android"

0 comments on commit 3e60c1a

Please sign in to comment.