mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
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.
6 lines
86 B
HTML
6 lines
86 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
body {
|
|
mask: url(foo.png), url(bar.png) no-clip;
|
|
}
|
|
</style>
|