mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
18 lines
410 B
HTML
18 lines
410 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<style>
|
|
@font-face {
|
|
font-family: Foo;
|
|
src: url("./Foo.woff");
|
|
}
|
|
</style>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
println(document.fonts.size);
|
|
document.styleSheets[0].cssRules[0].style.fontFamily = "";
|
|
println(document.fonts.size);
|
|
});
|
|
</script>
|
|
</html>
|