mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-03 17:02:56 +00:00
Now each test type has the same directories: - input - expected - data Also, tests can be in subdirectories within ./input.
22 lines
386 B
HTML
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>
|