mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 831561 - SVGClipPathElement should inherit from SVGElement r=longsonr
This commit is contained in:
parent
8ea3b38921
commit
ac02cf4093
10
content/svg/content/src/crashtests/831561.html
Normal file
10
content/svg/content/src/crashtests/831561.html
Normal 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>
|
@ -61,3 +61,4 @@ load zero-size-image.svg
|
||||
load 723441-1.html
|
||||
load 751515-1.svg
|
||||
load 761507-1.svg
|
||||
load 831561.html
|
||||
|
@ -12,8 +12,9 @@
|
||||
|
||||
interface SVGAnimatedEnumeration;
|
||||
|
||||
interface SVGClipPathElement : SVGTransformableElement {
|
||||
interface SVGClipPathElement : SVGElement {
|
||||
readonly attribute SVGAnimatedEnumeration clipPathUnits;
|
||||
readonly attribute SVGAnimatedTransformList transform;
|
||||
};
|
||||
|
||||
SVGClipPathElement implements SVGUnitTypes;
|
||||
|
Loading…
Reference in New Issue
Block a user