mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
We don't yet support multiple images but we at least continue to use the first rather than having none
15 lines
555 B
HTML
15 lines
555 B
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="../expected/mask-image-multiple-same-ref.html" />
|
|
<style>
|
|
#mask-image-box {
|
|
background-color: green;
|
|
width: 100px;
|
|
height: 200px;
|
|
mask-image: url("../data/mask-image-100x200.png"), url("../data/mask-image-100x200.png");
|
|
}
|
|
</style>
|
|
|
|
<div id="mask-image-box"></div>
|
|
<!-- FIXME: Workaround to ensure CSS mask-image is loaded before taking screenshot: https://github.com/LadybirdBrowser/ladybird/issues/3448 -->
|
|
<img style="display: none" src="../data/mask-image-100x200.png" />
|