summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-font-loading/fontfaceset-clear-css-connected.html
blob: 66f786d95356089400134da2560c62b7eba9ca76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="author" title="Myles C. Maxfield" href="mmaxfield@apple.com">
<link rel="help" href="https://drafts.csswg.org/css-font-loading-3/#dom-fontfaceset-clear">
<meta name="assert" content="Ensure that calling clear() does not remove CSS-connected FontFaces." />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
@font-face {
    font-family: "WebFont";
    src: url("resources/Rochester.otf") format("opentype");
}
</style>
<script>
test(function(t) {
    let fonts = document.fonts;
    let font = fonts.keys().next().value;
    assert_equals(fonts.size, 1);
    fonts.clear();
    assert_equals(fonts.size, 1);
});
</script>
</html>