summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/cssom/CSSFontFaceRule.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/cssom/CSSFontFaceRule.html')
-rw-r--r--testing/web-platform/tests/css/cssom/CSSFontFaceRule.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/cssom/CSSFontFaceRule.html b/testing/web-platform/tests/css/cssom/CSSFontFaceRule.html
new file mode 100644
index 0000000000..438c30df9e
--- /dev/null
+++ b/testing/web-platform/tests/css/cssom/CSSFontFaceRule.html
@@ -0,0 +1,21 @@
+<!doctype html>
+<meta charset="utf-8">
+<title>CSSOM - CSSFontFaceRule interface</title>
+<link rel="help" href="https://drafts.csswg.org/css-fonts-4/#cssfontfacerule">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<style>
+ @font-face {
+ src: local("foo");
+ font-family: foo;
+ font-weight: bold;
+ }
+</style>
+<script>
+test(function() {
+ // TODO: The exact serialization isn't consistent across browsers
+ // (Firefox doesn't preserve ordering of the descriptors, WebKit/Blink does).
+ let rule = document.styleSheets[0].cssRules[0];
+ assert_false(rule.cssText.includes('\n'));
+}, "CSSFontFaceRule.cssText doesn't serialize with newlines");
+</script>