mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 10:07:15 +02:00
input-placeholder-ref was modified because the input box ends up being slightly wider outside of quirks mode.
22 lines
895 B
HTML
22 lines
895 B
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="../expected/svg-clip-path-transform-ref.html" />
|
|
<svg>
|
|
<g id="root" transform="scale(.5 .5)">
|
|
<g id="maskContainer" transform="scale(.5 2)">
|
|
<clipPath id="maskGroup" transform="translate(0,20)">
|
|
<path id="maskPath" d="M0 0h100v100H0z" />
|
|
</clipPath>
|
|
</g>
|
|
<g id="targetContainer" transform="rotate(5)">
|
|
<g transform="translate(20,0)">
|
|
<path d="M0 0h100v100H0z" style="fill:red" />
|
|
<path d="M0 100h100v100H0z" style="fill:red" />
|
|
</g>
|
|
<g id="targetGroup" clip-path="url(#maskGroup)" transform="translate(20,0)">
|
|
<path id="targetPath1" d="M0 0h100v100H0z" style="fill:green" />
|
|
<path id="targetPath2" d="M0 100h100v100H0z" style="fill:blue" />
|
|
</g>
|
|
</g>
|
|
</g>
|
|
</svg>
|