Bug 1757603: Update MDN compat data. r=Honza

Differential Revision: https://phabricator.services.mozilla.com/D140037
This commit is contained in:
Daisuke Akatsuka 2022-03-02 10:45:52 +00:00
parent 88a2067f30
commit f9369c4811
3 changed files with 11 additions and 11 deletions

View File

@ -15,7 +15,7 @@ const TEST_URI = `
user-modify: read-only;
}
div {
font-variant-alternates: historical-forms;
-moz-context-properties: fill;
}
</style>
<body>
@ -45,10 +45,10 @@ const TEST_DATA_ALL = [
...TEST_DATA_SELECTED,
{
type: COMPATIBILITY_ISSUE_TYPE.CSS_PROPERTY,
property: "font-variant-alternates",
url: "https://developer.mozilla.org/docs/Web/CSS/font-variant-alternates",
deprecated: true,
experimental: false,
property: "-moz-context-properties",
url: "https://developer.mozilla.org/docs/Web/CSS/-moz-context-properties",
deprecated: false,
experimental: true,
},
];

View File

@ -86,16 +86,16 @@ const TEST_DATA = [
},
{
description: "Test for a property having some issues",
declarations: [{ name: "font-variant-alternates" }],
declarations: [{ name: "-moz-context-properties" }],
browsers: [FIREFOX_1],
expectedIssues: [
{
type: COMPATIBILITY_ISSUE_TYPE.CSS_PROPERTY,
property: "font-variant-alternates",
property: "-moz-context-properties",
url:
"https://developer.mozilla.org/docs/Web/CSS/font-variant-alternates",
deprecated: true,
experimental: false,
"https://developer.mozilla.org/docs/Web/CSS/-moz-context-properties",
deprecated: false,
experimental: true,
unsupportedBrowsers: [FIREFOX_1],
},
],

File diff suppressed because one or more lines are too long