Update web-platform-tests to revision b'6884bbba4e81574d2ba84d134bc45fbd7483294f'

This commit is contained in:
WPT Sync Bot 2023-02-16 01:43:16 +00:00
parent aaa2348a25
commit 2a743bedbd
91 changed files with 1387 additions and 535 deletions

View file

@ -20,13 +20,11 @@ test_computed_value('font-feature-settings', '"dlig"');
test_computed_value('font-feature-settings', '"smcp"');
test_computed_value('font-feature-settings', '"c2sc"');
test_computed_value('font-feature-settings', '"liga" 0');
test_computed_value('font-feature-settings', '"tnum", "hist"',
['"tnum", "hist"', '"hist", "tnum"']);
test_computed_value('font-feature-settings', '"tnum", "hist"', '"hist", "tnum"');
test_computed_value('font-feature-settings', '"PKRN"');
test_computed_value('font-feature-settings', '"dlig", "smcp", "dlig" 0',
['"smcp", "dlig" 0', '"dlig" 0, "smcp"']);
test_computed_value('font-feature-settings', '"dlig", "smcp", "dlig" 0', '"dlig" 0, "smcp"');
</script>
</body>
</html>

View file

@ -23,6 +23,12 @@ test_computed_value('font-variation-settings', '"wght" 700, "wght" 500', '"wght"
test_computed_value('font-variation-settings', '"wght" 700, "XHGT" 0.7',
['"wght" 700, "XHGT" 0.7', '"XHGT" 0.7, "wght" 700']);
test_computed_value('font-variation-settings', '"wght" 100, "wdth" 200', '"wdth" 200, "wght" 100',
"values should be sorted alphabetically by tag.");
test_computed_value('font-variation-settings', '"wght" 100, "wdth" 200, "wght" 300, "wdth" 400', '"wdth" 400, "wght" 300',
"duplicate values should be removed, keeping the rightmost occurrence, and sorted alphabetically by tag.");
test_computed_value('font-variation-settings', '"XHGT" calc(0.4 + 0.3)', '"XHGT" 0.7');
</script>
</body>