diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/css/cssom/cssom-fontfacerule.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/cssom/cssom-fontfacerule.html')
-rw-r--r-- | testing/web-platform/tests/css/cssom/cssom-fontfacerule.html | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/cssom/cssom-fontfacerule.html b/testing/web-platform/tests/css/cssom/cssom-fontfacerule.html new file mode 100644 index 0000000000..9a06808e3a --- /dev/null +++ b/testing/web-platform/tests/css/cssom/cssom-fontfacerule.html @@ -0,0 +1,58 @@ +<!DOCTYPE html> +<html> + <head> + <title>CSSOM Parsing Test: @font-face rules parsed into CSSOM CSSFontFaceRules</title> + <link rel="author" title="Paul Irish" href="mailto:paul.irish@gmail.com"> + <link rel="help" href="https://drafts.csswg.org/css-fonts-4/#om-fontface"> + + <meta name="flags" content="dom"> + + <script src="/resources/testharness.js"></script> + <script src="/resources/testharnessreport.js"></script> + </head> + + <body> + <div id="log"></div> + + + <style id="teststyles"> + @font-face { + src: url(http://foo/bar/font.ttf); + } + @font-face { + font-family: STIXGeneral; + src: local(STIXGeneral), url(/stixfonts/STIXGeneral.otf); + unicode-range: U+000-49F, U+2000-27FF, U+2900-2BFF, U+1D400-1D7FF; + } + @font-face { + font-family: MainText; + src: url(http://example.com/font.ttf); + font-variant: oldstyle-nums proportional-nums styleset(1,3); + } + + @font-face { + font-family: BodyText; + src: local("HiraMaruPro-W4"); + font-variant: proportional-width; + font-feature-settings: "ital"; /* Latin italics within CJK text feature */ + } + </style> + + + <script> + var validRules = document.getElementById('teststyles').sheet.cssRules; + + test(function(){ + + assert_equals(validRules[0].style.src, 'url("http://foo/bar/font.ttf")'); + assert_equals(validRules[1].style.fontFamily, 'STIXGeneral'); + + /* unimplemented @font-face properties are not represented in CSSOM */ + + }, 'CSSStyleDeclaration values are represented within CSSFontFaceRule') + + </script> + + + </body> +</html> |