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

Side by Side Diff: Source/bindings/tests/idls/TestObject.idl

Issue 105543004: Add bindings tests coverage for reflected attributes with a SVG animated type (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Group new attribute with other reflected attributes Created 7 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/bindings/tests/results/V8TestObject.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Apple Inc. All rights reserved. 3 * Copyright (C) 2010 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary formstrArg, with or without 5 * Redistribution and use in source and binary formstrArg, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 // Reflected DOM attributes 66 // Reflected DOM attributes
67 [Reflect, TreatNullAs=NullString] attribute DOMString reflectedStringAttr; 67 [Reflect, TreatNullAs=NullString] attribute DOMString reflectedStringAttr;
68 [Reflect] attribute long reflectedIntegralAttr; 68 [Reflect] attribute long reflectedIntegralAttr;
69 [Reflect] attribute unsigned long reflectedUnsignedIntegralAttr; 69 [Reflect] attribute unsigned long reflectedUnsignedIntegralAttr;
70 [Reflect] attribute boolean reflectedBooleanAttr; 70 [Reflect] attribute boolean reflectedBooleanAttr;
71 [Reflect, TreatNullAs=NullString, URL] attribute DOMString reflectedURLAttr; 71 [Reflect, TreatNullAs=NullString, URL] attribute DOMString reflectedURLAttr;
72 [Reflect=customContentStringAttr, TreatNullAs=NullString] attribute DOMStrin g reflectedStringAttr; 72 [Reflect=customContentStringAttr, TreatNullAs=NullString] attribute DOMStrin g reflectedStringAttr;
73 [Reflect=customContentIntegralAttr] attribute long reflectedCustomIntegralAt tr; 73 [Reflect=customContentIntegralAttr] attribute long reflectedCustomIntegralAt tr;
74 [Reflect=customContentBooleanAttr] attribute boolean reflectedCustomBooleanA ttr; 74 [Reflect=customContentBooleanAttr] attribute boolean reflectedCustomBooleanA ttr;
75 [Reflect=customContentURLAttr, TreatNullAs=NullString, URL] attribute DOMStr ing reflectedCustomURLAttr; 75 [Reflect=customContentURLAttr, TreatNullAs=NullString, URL] attribute DOMStr ing reflectedCustomURLAttr;
76 [Reflect] attribute SVGAnimatedString animatedReflectedAttribute;
76 77
77 // TypedArray attribute 78 // TypedArray attribute
78 attribute Float32Array typedArrayAttr; 79 attribute Float32Array typedArrayAttr;
79 80
80 // Methods 81 // Methods
81 void voidMethod(); 82 void voidMethod();
82 void voidMethodWithArgs(long longArg, DOMString strArg, TestObject objArg ); 83 void voidMethodWithArgs(long longArg, DOMString strArg, TestObject objArg );
83 long longMethod(); 84 long longMethod();
84 long longMethodWithArgs(long longArg, DOMString strArg, TestObject objArg ); 85 long longMethodWithArgs(long longArg, DOMString strArg, TestObject objArg );
85 [MeasureAs=TestFeature] TestObject objMethod(); 86 [MeasureAs=TestFeature] TestObject objMethod();
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 [DeprecateAs=Constant] const unsigned short DEPRECATED_CONSTANT = 1; 304 [DeprecateAs=Constant] const unsigned short DEPRECATED_CONSTANT = 1;
304 305
305 // PutForwards 306 // PutForwards
306 [PutForwards=href] readonly attribute TestNode location; 307 [PutForwards=href] readonly attribute TestNode location;
307 [PutForwards=hrefThrows] readonly attribute TestNode locationWithException; 308 [PutForwards=hrefThrows] readonly attribute TestNode locationWithException;
308 }; 309 };
309 310
310 // The following comment should not generate any code 311 // The following comment should not generate any code
311 // TestObject implements TestImplements; 312 // TestObject implements TestImplements;
312 313
OLDNEW
« no previous file with comments | « no previous file | Source/bindings/tests/results/V8TestObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698