haikuwebkit/LayoutTests/svg/custom/composited-svg-with-opacity...

42 lines
498 B
HTML

<html>
<style>
div {
display: inline-block;
}
svg {
width: 100px;
height: 100px;
margin: 10px;
}
rect {
opacity: 0.5;
}
</style>
<body>
<div>
<svg>
<rect width="100" height="100"></rect>
</svg>
</div>
<div>
<svg>
<rect width="100" height="100"></rect>
</svg>
</div>
<div>
<svg>
<rect width="100" height="100"></rect>
</svg>
</div>
<div>
<svg>
<rect width="100" height="100"></rect>
</svg>
</div>
</body>
</html>