зеркало из https://github.com/mozilla/gecko-dev.git
merge m-c to fx-team
This commit is contained in:
Коммит
794c8a29dd
|
@ -20,6 +20,7 @@
|
||||||
.mediaControlsFrame {
|
.mediaControlsFrame {
|
||||||
direction: ltr;
|
direction: ltr;
|
||||||
/* Prevent unwanted style inheritance. See bug 554717. */
|
/* Prevent unwanted style inheritance. See bug 554717. */
|
||||||
|
text-align: left;
|
||||||
list-style-image: none !important;
|
list-style-image: none !important;
|
||||||
font: normal normal normal 100%/normal sans-serif !important;
|
font: normal normal normal 100%/normal sans-serif !important;
|
||||||
text-decoration: none !important;
|
text-decoration: none !important;
|
||||||
|
|
|
@ -1257,8 +1257,10 @@ var AddonRepository = {
|
||||||
// Parses addon_compatibility nodes, that describe compatibility overrides.
|
// Parses addon_compatibility nodes, that describe compatibility overrides.
|
||||||
_parseAddonCompatElement: function(aResultObj, aElement) {
|
_parseAddonCompatElement: function(aResultObj, aElement) {
|
||||||
let guid = this._getDescendantTextContent(aElement, "guid");
|
let guid = this._getDescendantTextContent(aElement, "guid");
|
||||||
if (!guid)
|
if (!guid) {
|
||||||
|
LOG("Compatibility override is missing guid.");
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
let compat = {id: guid};
|
let compat = {id: guid};
|
||||||
compat.hosted = aElement.getAttribute("hosted") != "false";
|
compat.hosted = aElement.getAttribute("hosted") != "false";
|
||||||
|
@ -1292,21 +1294,31 @@ var AddonRepository = {
|
||||||
function parseRangeNode(aNode) {
|
function parseRangeNode(aNode) {
|
||||||
let type = aNode.getAttribute("type");
|
let type = aNode.getAttribute("type");
|
||||||
// Only "incompatible" (blacklisting) is supported for now.
|
// Only "incompatible" (blacklisting) is supported for now.
|
||||||
if (type != "incompatible")
|
if (type != "incompatible") {
|
||||||
|
LOG("Compatibility override of unsupported type found.");
|
||||||
return null;
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
let override = new AddonManagerPrivate.AddonCompatibilityOverride(type);
|
let override = new AddonManagerPrivate.AddonCompatibilityOverride(type);
|
||||||
|
|
||||||
override.minVersion = this._getDirectDescendantTextContent(aNode, "min_version");
|
override.minVersion = this._getDirectDescendantTextContent(aNode, "min_version");
|
||||||
override.maxVersion = this._getDirectDescendantTextContent(aNode, "max_version");
|
override.maxVersion = this._getDirectDescendantTextContent(aNode, "max_version");
|
||||||
|
|
||||||
if (!override.minVersion || !override.maxVersion)
|
if (!override.minVersion) {
|
||||||
|
LOG("Compatibility override is missing min_version.");
|
||||||
return null;
|
return null;
|
||||||
|
}
|
||||||
|
if (!override.maxVersion) {
|
||||||
|
LOG("Compatibility override is missing max_version.");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
let appRanges = aNode.querySelectorAll("compatible_applications > application");
|
let appRanges = aNode.querySelectorAll("compatible_applications > application");
|
||||||
let appRange = findMatchingAppRange.bind(this)(appRanges);
|
let appRange = findMatchingAppRange.bind(this)(appRanges);
|
||||||
if (!appRange)
|
if (!appRange) {
|
||||||
|
LOG("Compatibility override is missing a valid application range.");
|
||||||
return null;
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
override.appID = appRange.appID;
|
override.appID = appRange.appID;
|
||||||
override.appMinVersion = appRange.appMinVersion;
|
override.appMinVersion = appRange.appMinVersion;
|
||||||
|
|
|
@ -6148,6 +6148,7 @@ AddonInstall.prototype = {
|
||||||
if (aRepoAddon) {
|
if (aRepoAddon) {
|
||||||
aAddon._repositoryAddon = aRepoAddon;
|
aAddon._repositoryAddon = aRepoAddon;
|
||||||
aAddon.compatibilityOverrides = aRepoAddon.compatibilityOverrides;
|
aAddon.compatibilityOverrides = aRepoAddon.compatibilityOverrides;
|
||||||
|
aAddon.appDisabled = !isUsableAddon(aAddon);
|
||||||
aCallback();
|
aCallback();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -6159,6 +6160,7 @@ AddonInstall.prototype = {
|
||||||
aAddon.compatibilityOverrides = aRepoAddon ?
|
aAddon.compatibilityOverrides = aRepoAddon ?
|
||||||
aRepoAddon.compatibilityOverrides :
|
aRepoAddon.compatibilityOverrides :
|
||||||
null;
|
null;
|
||||||
|
aAddon.appDisabled = !isUsableAddon(aAddon);
|
||||||
aCallback();
|
aCallback();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
|
||||||
|
<!-- An extension that has a compatibility override making it incompatible. -->
|
||||||
|
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:em="http://www.mozilla.org/2004/em-rdf#">
|
||||||
|
|
||||||
|
<Description about="urn:mozilla:install-manifest">
|
||||||
|
<em:id>addon6@tests.mozilla.org</em:id>
|
||||||
|
<em:version>1.0</em:version>
|
||||||
|
|
||||||
|
<!-- Front End MetaData -->
|
||||||
|
<em:name>Addon Test 6</em:name>
|
||||||
|
<em:description>Test Description</em:description>
|
||||||
|
|
||||||
|
<em:targetApplication>
|
||||||
|
<Description>
|
||||||
|
<em:id>xpcshell@tests.mozilla.org</em:id>
|
||||||
|
<em:minVersion>1</em:minVersion>
|
||||||
|
<em:maxVersion>1</em:maxVersion>
|
||||||
|
</Description>
|
||||||
|
</em:targetApplication>
|
||||||
|
|
||||||
|
</Description>
|
||||||
|
</RDF>
|
|
@ -31,4 +31,23 @@
|
||||||
<compatible_os>ALL</compatible_os>
|
<compatible_os>ALL</compatible_os>
|
||||||
<install size="2">http://example.com/browser/toolkit/mozapps/extensions/test/browser/addons/browser_install1_2.xpi</install>
|
<install size="2">http://example.com/browser/toolkit/mozapps/extensions/test/browser/addons/browser_install1_2.xpi</install>
|
||||||
</addon>
|
</addon>
|
||||||
|
|
||||||
|
<addon_compatibility hosted="false">
|
||||||
|
<guid>addon6@tests.mozilla.org</guid>
|
||||||
|
<name>Addon Test 6</name>
|
||||||
|
<version_ranges>
|
||||||
|
<version_range type="incompatible">
|
||||||
|
<min_version>1.0</min_version>
|
||||||
|
<max_version>1.0</max_version>
|
||||||
|
<compatible_applications>
|
||||||
|
<application>
|
||||||
|
<name>XPCShell</name>
|
||||||
|
<min_version>1.0</min_version>
|
||||||
|
<max_version>1.0</max_version>
|
||||||
|
<appID>xpcshell@tests.mozilla.org</appID>
|
||||||
|
</application>
|
||||||
|
</compatible_applications>
|
||||||
|
</version_range>
|
||||||
|
</version_ranges>
|
||||||
|
</addon_compatibility>
|
||||||
</searchresults>
|
</searchresults>
|
||||||
|
|
|
@ -1678,7 +1678,52 @@ function check_test_28(install) {
|
||||||
function finish_test_28(install) {
|
function finish_test_28(install) {
|
||||||
prepare_test({}, [
|
prepare_test({}, [
|
||||||
"onDownloadCancelled"
|
"onDownloadCancelled"
|
||||||
], do_test_finished);
|
], run_test_29);
|
||||||
|
|
||||||
install.cancel();
|
install.cancel();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Tests that an install with a matching compatibility override has appDisabled
|
||||||
|
// set correctly.
|
||||||
|
function run_test_29() {
|
||||||
|
Services.prefs.setBoolPref("extensions.getAddons.cache.enabled", true);
|
||||||
|
|
||||||
|
prepare_test({ }, [
|
||||||
|
"onNewInstall"
|
||||||
|
]);
|
||||||
|
|
||||||
|
let url = "http://localhost:4444/addons/test_install6.xpi";
|
||||||
|
AddonManager.getInstallForURL(url, function(install) {
|
||||||
|
ensure_test_completed();
|
||||||
|
|
||||||
|
do_check_neq(install, null);
|
||||||
|
do_check_eq(install.version, "1.0");
|
||||||
|
do_check_eq(install.name, "Addon Test 6");
|
||||||
|
do_check_eq(install.state, AddonManager.STATE_AVAILABLE);
|
||||||
|
|
||||||
|
AddonManager.getInstallsByTypes(null, function(activeInstalls) {
|
||||||
|
do_check_eq(activeInstalls.length, 1);
|
||||||
|
do_check_eq(activeInstalls[0], install);
|
||||||
|
|
||||||
|
prepare_test({}, [
|
||||||
|
"onDownloadStarted",
|
||||||
|
"onDownloadEnded"
|
||||||
|
], check_test_29);
|
||||||
|
install.install();
|
||||||
|
});
|
||||||
|
}, "application/x-xpinstall", null, "Addon Test 6", null, "1.0");
|
||||||
|
}
|
||||||
|
|
||||||
|
function check_test_29(install) {
|
||||||
|
//ensure_test_completed();
|
||||||
|
do_check_eq(install.state, AddonManager.STATE_DOWNLOADED);
|
||||||
|
do_check_neq(install.addon, null);
|
||||||
|
do_check_false(install.addon.isCompatible);
|
||||||
|
do_check_true(install.addon.appDisabled);
|
||||||
|
|
||||||
|
prepare_test({}, [
|
||||||
|
"onDownloadCancelled"
|
||||||
|
], do_test_finished);
|
||||||
|
install.cancel();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче