summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/svg/SVGFilterElement.idl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/svg/SVGFilterElement.idl')
-rw-r--r--chromium/third_party/WebKit/Source/core/svg/SVGFilterElement.idl9
1 files changed, 5 insertions, 4 deletions
diff --git a/chromium/third_party/WebKit/Source/core/svg/SVGFilterElement.idl b/chromium/third_party/WebKit/Source/core/svg/SVGFilterElement.idl
index 7934751647c..5aa71f57800 100644
--- a/chromium/third_party/WebKit/Source/core/svg/SVGFilterElement.idl
+++ b/chromium/third_party/WebKit/Source/core/svg/SVGFilterElement.idl
@@ -24,7 +24,9 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-interface SVGFilterElement : SVGElement {
+[
+ TypeChecking=Interface|Nullable,
+] interface SVGFilterElement : SVGElement {
readonly attribute SVGAnimatedEnumeration filterUnits;
readonly attribute SVGAnimatedEnumeration primitiveUnits;
readonly attribute SVGAnimatedLength x;
@@ -34,10 +36,9 @@ interface SVGFilterElement : SVGElement {
readonly attribute SVGAnimatedInteger filterResX;
readonly attribute SVGAnimatedInteger filterResY;
- void setFilterRes([Default=Undefined] optional unsigned long filterResX,
- [Default=Undefined] optional unsigned long filterResY);
+ void setFilterRes(unsigned long filterResX,
+ unsigned long filterResY);
};
-SVGFilterElement implements SVGExternalResourcesRequired;
SVGFilterElement implements SVGURIReference;