mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1129650 - Touching navigator.mozId causes an error NS_ERROR_FACTORY_NOT_REGISTERED. r=baku
This commit is contained in:
parent
f61ddf3588
commit
9ab5b4a32d
@ -536,9 +536,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
|
||||
|
@ -89,7 +89,6 @@ DIRS += [
|
||||
'indexedDB',
|
||||
'system',
|
||||
'ipc',
|
||||
'identity',
|
||||
'workers',
|
||||
'camera',
|
||||
'audiochannel',
|
||||
@ -141,6 +140,7 @@ if CONFIG['MOZ_SECUREELEMENT']:
|
||||
if CONFIG['MOZ_B2G']:
|
||||
DIRS += [
|
||||
'downloads',
|
||||
'identity',
|
||||
'mobileid',
|
||||
'engineeringmode'
|
||||
]
|
||||
|
@ -241,7 +241,6 @@ WEBIDL_FILES = [
|
||||
'IDBRequest.webidl',
|
||||
'IDBTransaction.webidl',
|
||||
'IDBVersionChangeEvent.webidl',
|
||||
'Identity.webidl',
|
||||
'ImageCapture.webidl',
|
||||
'ImageData.webidl',
|
||||
'ImageDocument.webidl',
|
||||
@ -824,3 +823,8 @@ if CONFIG['MOZ_PAY']:
|
||||
WEBIDL_FILES += [
|
||||
'MozPaymentProvider.webidl'
|
||||
]
|
||||
|
||||
if CONFIG['MOZ_B2G']:
|
||||
WEBIDL_FILES += [
|
||||
'Identity.webidl'
|
||||
]
|
||||
|
@ -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
|
||||
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user