Files
serenity/Tests/LibWeb/Text/input/css/unicode-range-all-wildcard.html
Gingeh be681da6a7 LibWeb: Use substrings instead of pointers when parsing unicode ranges
Fixes a segfault when parsing a wildcard-only unicode range

(cherry picked from commit a4b38dda5611e87987c855de8a6e06aa0351bd1b)
2024-11-25 09:21:14 -05:00

12 lines
191 B
HTML

<style>
@font-face {
unicode-range: U+??;
}
</style>
<script src="../include.js"></script>
<script>
test(() => {
println("PASS (didn't crash)");
});
</script>