Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / svg / SVGFilterElement.idl
index 0e983c9..6a6997c 100644 (file)
@@ -24,7 +24,9 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-interface SVGFilterElement : SVGElement {
+[
+    StrictTypeChecking,
+] interface SVGFilterElement : SVGElement {
     readonly attribute SVGAnimatedEnumeration filterUnits;
     readonly attribute SVGAnimatedEnumeration primitiveUnits;
     readonly attribute SVGAnimatedLength      x;
@@ -34,8 +36,8 @@ 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 SVGURIReference;