mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
11 lines
265 B
HTML
11 lines
265 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
@font-face foo {}
|
|
</style>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
println(`\`@font-face foo {}\` should be invalid: ${document.styleSheets[0].cssRules.length === 0 ? "PASS" : "FAIL"}`);
|
|
});
|
|
</script>
|