mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00:00
14 lines
412 B
HTML
14 lines
412 B
HTML
<!DOCTYPE html>
|
|
<div class="masked"></div>
|
|
|
|
<style>
|
|
.masked {
|
|
display: block;
|
|
width: 200px;
|
|
height: 200px;
|
|
mask-image: url("../data/smiley.png");
|
|
background-color: blue;
|
|
}
|
|
</style>
|
|
<!-- FIXME: Workaround to ensure CSS background-image is loaded before taking screenshot: https://github.com/LadybirdBrowser/ladybird/issues/3448 -->
|
|
<img src="../data/smiley.png" />
|