diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/svg/overflow-visible-image-ref.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/layout/reftests/svg/overflow-visible-image-ref.html b/layout/reftests/svg/overflow-visible-image-ref.html new file mode 100644 index 0000000000..ca4cdd7db8 --- /dev/null +++ b/layout/reftests/svg/overflow-visible-image-ref.html @@ -0,0 +1,10 @@ +<html> + <svg style="position: absolute; top: 0px; overflow: visible"> + <rect width=100 height=100 x=100 y=200 fill=black /> + <image width=100 height=100 x=0 y=0 + xlink:href='data:image/svg+xml, + <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 200 200"> + <rect width="100" height="100" x="0" y="0" fill="green"/> + </svg>' + /> + </svg> |