Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Unified Diff: Source/bindings/tests/idls/TestSVG.idl

Issue 137773002: Cleanup IDL test files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix SVG Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/bindings/tests/idls/TestObject.idl ('k') | Source/bindings/tests/idls/TestTypedefs.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/tests/idls/TestSVG.idl
diff --git a/Source/core/svg/SVGAnimatedLengthList.h b/Source/bindings/tests/idls/TestSVG.idl
similarity index 72%
copy from Source/core/svg/SVGAnimatedLengthList.h
copy to Source/bindings/tests/idls/TestSVG.idl
index 8b4f5f11713fd7671bb238493dd7462510445e5b..d01a6373eb0232c064d187ad1cb985e5a1e2e556 100644
--- a/Source/core/svg/SVGAnimatedLengthList.h
+++ b/Source/bindings/tests/idls/TestSVG.idl
@@ -28,16 +28,20 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef SVGAnimatedLengthList_h
-#define SVGAnimatedLengthList_h
-#include "core/svg/SVGLengthListTearOff.h"
-#include "core/svg/properties/NewSVGAnimatedProperty.h"
+typedef SVGPoint SVGPOINT;
-namespace WebCore {
+interface TestSVG {
+ [Reflect] attribute SVGAnimatedString animatedReflectedAttribute;
+ [CheckSecurity=Node, RaisesException] SVGDocument getSVGDocument();
-typedef NewSVGAnimatedProperty<SVGLengthList> SVGAnimatedLengthList;
+ attribute SVGPoint mutablePoint;
+ [Immutable] attribute SVGPoint immutablePoint;
+ SVGPoint mutablePointFunction();
+ [Immutable] SVGPoint immutablePointFunction();
+ [Immutable] SVGPOINT immutablePointFunctionTypedef();
-} // namespace WebCore
+ SVGPoint svgPointMethod(SVGPoint item, unsigned long index);
+ [StrictTypeChecking, RaisesException] SVGPoint strictSVGPointMethod(SVGPoint item, unsigned long index);
-#endif
+};
« no previous file with comments | « Source/bindings/tests/idls/TestObject.idl ('k') | Source/bindings/tests/idls/TestTypedefs.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698