testing/web-platform/tests/css/css-fonts/font-family-src-quoted.html
author Lando <lando@lando.test>
Fri, 11 Jul 2025 09:11:47 +0000 (2 hours ago)
changeset 796052 0a0cf87651274d2f86228467e41dafd62a510749
parent 634444 dda392face60e16509297dfd9106ace53e5629dd
permissions -rw-r--r--
Merge autoland to mozilla-central
<!DOCTYPE HTML>
<html>
<head>
<meta charset=utf-8>
<link rel="author" title="Myles C. Maxfield" href="mailto:mmaxfield@apple.com">
<link rel="help" href="https://drafts.csswg.org/css-fonts-4/#font-face-src-formats" />
<meta name="assert" content="Tests that local() and url() in serialization of @font-face blocks are quoted"/>
<script type="text/javascript" src="/resources/testharness.js"></script>
<script type="text/javascript" src="/resources/testharnessreport.js"></script>
<style id="style">
/* 0 */
@font-face {
    font-family: "A";
    src: local("B");
}
/* 1 */
@font-face {
    font-family: "C";
    src: url("D") format("opentype");
}
/* 2 */
@font-face {
    font-family: "E";
    src: url("F") format("opentype");
}
/* 3 */
@font-face {
    font-family: "M";
    src: url("N\"O") format("opentype");
}
/* 4 */
@font-face {
    font-family: "P";
    src: url("Q\A R") format("opentype");
}
/* 5 */
@font-face {
    font-family: "S";
    src: url("T\\U") format("opentype");
}
/* 6 */
@font-face {
    font-family: "V";
    src: local("W\"X");
}
/* 7 */
@font-face {
    font-family: "Y";
    src: local("Z\A A");
}
/* 8 */
@font-face {
    font-family: "B";
    src: local("C\\D");
}
</style>
</head>
<body>
<script>
test(function(t) {
    let rules = document.getElementById("style").sheet.cssRules;
    assert_not_equals(rules[0].cssText.indexOf('local("B")'), -1);
    assert_not_equals(rules[1].cssText.indexOf('opentype'), -1);
    assert_not_equals(rules[2].cssText.indexOf('F")'), -1);
    assert_not_equals(rules[3].cssText.indexOf('url(\"N\\\"O\")'), -1);
    assert_not_equals(rules[4].cssText.indexOf('url(\"Q\\a R\")'), -1);
    assert_not_equals(rules[5].cssText.indexOf('url(\"T\\\\U\")'), -1);
    assert_not_equals(rules[6].cssText.indexOf('local(\"W\\\"X\")'), -1);
    assert_not_equals(rules[7].cssText.indexOf('local(\"Z\\a A\")'), -1);
    assert_not_equals(rules[8].cssText.indexOf('local(\"C\\\\D\")'), -1);
});
</script>
</body>
</html>