mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
12 lines
279 B
HTML
12 lines
279 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const fontFace = new FontFace("Foo", "url(./Foo.woff)");
|
|
fontFace.family = '"Bar"';
|
|
println(fontFace.family);
|
|
});
|
|
</script>
|
|
</html>
|