blob: 0134571ac96dd1b89ec2e250ca78b0aba5ac0287 [file] [edit]
<!doctype html>
<meta charset=utf-8>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<link rel=help href="https://drafts.csswg.org/css-font-loading/">
<div id=log></div>
<script>
"use strict";
// https://github.com/w3c/csswg-drafts/commit/b03a8c9721b56774723ed7804ca6f3f04a922d69
test(function() {
assert_throws_js(TypeError, function() {
new FontFaceSet([]);
});
}, "FontFaceSet constructor should not be supported");
</script>