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.
20 lines
592 B
HTML
20 lines
592 B
HTML
<!DOCTYPE html>
|
|
<svg
|
|
width="100"
|
|
viewBox="0 0 100 90"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
version="1.1">
|
|
<defs>
|
|
<link rel="match" href="../expected/svg-clip-rule-ref.html" />
|
|
<path d="M50,0 21,90 98,35 2,35 79,90z" id="star" />
|
|
</defs>
|
|
<clipPath id="emptyStar">
|
|
<use href="#star" clip-rule="evenodd" />
|
|
</clipPath>
|
|
<rect clip-path="url(#emptyStar)" width="50" height="90" fill="blue" />
|
|
<clipPath id="filledStar">
|
|
<use href="#star" clip-rule="nonzero" />
|
|
</clipPath>
|
|
<rect clip-path="url(#filledStar)" width="50" height="90" x="50" fill="red" />
|
|
</svg>
|