14 lines
772 B
HTML
14 lines
772 B
HTML
<!DOCTYPE html>
|
|
<title>CSS Test: mask-image on an inline with a block inside split by a columnset</title>
|
|
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
|
|
<link rel="help" href="https://drafts.fxtf.org/css-masking-1/#mask-layer-image">
|
|
<link rel="match" href="reference/mask-image-ib-split-ref.html">
|
|
<meta name="assert" content="mask-image applies to the block child">
|
|
<style>
|
|
body { column-width: 40px; column-gap: 0; }
|
|
div { padding-inline-start: 40px; margin: 1em 0; border-bottom-style: solid; }
|
|
span { margin-inline-end: -2px; }
|
|
x { mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQImWNgYGDwAQAAUQBNt+pgmgAAAABJRU5ErkJggg==); }
|
|
</style>
|
|
<body><x><span></span><div></div></x></body>
|
|
</html>
|