Bug 831561 - SVGClipPathElement should inherit from SVGElement r=longsonr

This commit is contained in:
David Zbarsky 2013-01-29 03:50:56 -05:00
parent 8ea3b38921
commit ac02cf4093
3 changed files with 13 additions and 1 deletions

View File

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<body>
<script>
var clipPath = document.createElementNS("http://www.w3.org/2000/svg",
"clipPath");
clipPath["hasExtension"].apply(clipPath,[]);
</script>
</body>
</html>

View File

@ -61,3 +61,4 @@ load zero-size-image.svg
load 723441-1.html
load 751515-1.svg
load 761507-1.svg
load 831561.html

View File

@ -12,8 +12,9 @@
interface SVGAnimatedEnumeration;
interface SVGClipPathElement : SVGTransformableElement {
interface SVGClipPathElement : SVGElement {
readonly attribute SVGAnimatedEnumeration clipPathUnits;
readonly attribute SVGAnimatedTransformList transform;
};
SVGClipPathElement implements SVGUnitTypes;