ladybird/Tests/LibWeb/Ref/expected/z-index-should-not-affect-svg-painting-order-ref.html
Sam Atkins b7efb61fbe Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others
Now each test type has the same directories:
- input
- expected
- data

Also, tests can be in subdirectories within ./input.
2024-11-05 14:02:07 +00:00

22 lines
386 B
HTML

<!DOCTYPE html>
<style>
svg {
width: 400px;
height: 400px;
border: 1px solid black;
}
#rect1 {
fill: red;
transform: translate(50px, 50px);
}
#rect2 {
fill: blue;
transform: translate(100px, 100px);
}
</style>
<svg width="400" height="400">
<rect id="rect1" width="200" height="200"></rect>
<rect id="rect2" width="200" height="200"></rect>
</svg>