summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-fonts/font-family-src-quoted.html
blob: a279e99153f20533d3eb8b0f5340df15c2ff3f87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!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>