mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
Now each test type has the same directories: - input - expected - data Also, tests can be in subdirectories within ./input.
26 lines
512 B
HTML
26 lines
512 B
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="../expected/z-index-should-not-affect-svg-painting-order-ref.html" />
|
|
<style>
|
|
svg {
|
|
width: 400px;
|
|
height: 400px;
|
|
border: 1px solid black;
|
|
}
|
|
|
|
#rect1 {
|
|
fill: red;
|
|
transform: translate(50px, 50px);
|
|
z-index: 2;
|
|
}
|
|
|
|
#rect2 {
|
|
fill: blue;
|
|
transform: translate(100px, 100px);
|
|
z-index: 1;
|
|
}
|
|
</style>
|
|
<svg width="400" height="400">
|
|
<rect id="rect1" width="200" height="200"></rect>
|
|
<rect id="rect2" width="200" height="200"></rect>
|
|
</svg>
|