mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-23 08:30:50 +00:00
10 lines
265 B
HTML
10 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>
|