ladybird/Tests/LibWeb/Crash/CSS/font-face-dom-parser.html
Callum Law 3708fc6aa7 LibWeb: Resolve relative lengths in @font-face using correct viewport
As with everywhere else we should be using the document rather than the
window's viewports.

Fixes #6467
2025-10-16 10:27:32 +01:00

6 lines
152 B
HTML

<script>
new DOMParser().parseFromString(
`<style>@font-face { font-family: a; src: url(); }</style>`,
"text/html"
);
</script>