From ac02cf4093b3f3b7d2aff8aef667cf248b6af3cb Mon Sep 17 00:00:00 2001 From: David Zbarsky Date: Tue, 29 Jan 2013 03:50:56 -0500 Subject: [PATCH] Bug 831561 - SVGClipPathElement should inherit from SVGElement r=longsonr --- content/svg/content/src/crashtests/831561.html | 10 ++++++++++ content/svg/content/src/crashtests/crashtests.list | 1 + dom/webidl/SVGClipPathElement.webidl | 3 ++- 3 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 content/svg/content/src/crashtests/831561.html diff --git a/content/svg/content/src/crashtests/831561.html b/content/svg/content/src/crashtests/831561.html new file mode 100644 index 00000000000..d86a8cb5bd6 --- /dev/null +++ b/content/svg/content/src/crashtests/831561.html @@ -0,0 +1,10 @@ + + + + + + diff --git a/content/svg/content/src/crashtests/crashtests.list b/content/svg/content/src/crashtests/crashtests.list index ee12a17d40e..c27bb832d91 100644 --- a/content/svg/content/src/crashtests/crashtests.list +++ b/content/svg/content/src/crashtests/crashtests.list @@ -61,3 +61,4 @@ load zero-size-image.svg load 723441-1.html load 751515-1.svg load 761507-1.svg +load 831561.html diff --git a/dom/webidl/SVGClipPathElement.webidl b/dom/webidl/SVGClipPathElement.webidl index 0a207df1204..aba8f52fbf6 100644 --- a/dom/webidl/SVGClipPathElement.webidl +++ b/dom/webidl/SVGClipPathElement.webidl @@ -12,8 +12,9 @@ interface SVGAnimatedEnumeration; -interface SVGClipPathElement : SVGTransformableElement { +interface SVGClipPathElement : SVGElement { readonly attribute SVGAnimatedEnumeration clipPathUnits; + readonly attribute SVGAnimatedTransformList transform; }; SVGClipPathElement implements SVGUnitTypes;