| Index: core/svg/SVGGraphicsElement.idl
|
| diff --git a/core/page/MemoryInfo.idl b/core/svg/SVGGraphicsElement.idl
|
| similarity index 74%
|
| copy from core/page/MemoryInfo.idl
|
| copy to core/svg/SVGGraphicsElement.idl
|
| index 30ac718a67a26f298499eee57929711393b1c3f1..a0585aec05a7d909a877266dc4db67814e0d7b9d 100644
|
| --- a/core/page/MemoryInfo.idl
|
| +++ b/core/svg/SVGGraphicsElement.idl
|
| @@ -1,5 +1,5 @@
|
| /*
|
| - * Copyright (C) 2010 Google Inc. All rights reserved.
|
| + * Copyright (C) 2013 Samsung Electronics. All rights reserved.
|
| *
|
| * Redistribution and use in source and binary forms, with or without
|
| * modification, are permitted provided that the following conditions are
|
| @@ -28,13 +28,16 @@
|
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| -[
|
| - NoInterfaceObject
|
| -] interface MemoryInfo {
|
| +interface SVGGraphicsElement : SVGStyledElement {
|
| + readonly attribute SVGAnimatedTransformList transform;
|
|
|
| - readonly attribute unsigned long totalJSHeapSize;
|
| - readonly attribute unsigned long usedJSHeapSize;
|
| - readonly attribute unsigned long jsHeapSizeLimit;
|
| + readonly attribute SVGElement nearestViewportElement;
|
| + readonly attribute SVGElement farthestViewportElement;
|
|
|
| + SVGRect getBBox();
|
| + SVGMatrix getCTM();
|
| + SVGMatrix getScreenCTM();
|
| + [RaisesException] SVGMatrix getTransformToElement([Default=Undefined] optional SVGElement element);
|
| };
|
|
|
| +SVGGraphicsElement implements SVGTests;
|
|
|