ladybird/Tests/LibWeb/Crash/CSS/mask-parsing-shorthand-multi-layer-mask-clip.html
InvalidUsernameException 35254d17d1 LibWeb/CSS: Do not crash when parsing some multi-layer mask shorthands
This fixes a silly bug where we would crash when parsing a multi-layer
mask shorthand property that contained the no-clip keyword but no value
for mask-origin.

Fixes a crash when parsing the CSS of https://www.browserbase.com/. The
site still has other, unrelated problems though.
2025-10-28 23:50:46 -07:00

6 lines
86 B
HTML

<!DOCTYPE html>
<style>
body {
mask: url(foo.png), url(bar.png) no-clip;
}
</style>