1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/svg/svg-integration/clipPath-html-07.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,31 @@ 1.4 +<!DOCTYPE html> 1.5 +<!-- 1.6 + Any copyright is dedicated to the Public Domain. 1.7 + http://creativecommons.org/publicdomain/zero/1.0/ 1.8 +--> 1.9 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.10 + <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=822014 --> 1.11 + <head> 1.12 + <title>Test clip-path on outer-<svg> with border</title> 1.13 + <style> 1.14 + 1.15 +html, body { 1.16 + border: 0; margin: 0; 1.17 +} 1.18 + 1.19 + </style> 1.20 + </head> 1.21 + <body> 1.22 + <svg xmlns="http://www.w3.org/2000/svg" 1.23 + width="200" height="200" clip-path="url(#cp)" 1.24 + style="border: solid 100px black; margin: 50px;"> 1.25 + 1.26 + <clipPath id="cp"> 1.27 + <path d="M50,50 150,50 150,150 50,150 z"/> 1.28 + </clipPath> 1.29 + 1.30 + <rect width="100%" height="100%" fill="yellow"/> 1.31 + 1.32 + </svg> 1.33 + </body> 1.34 +</html>