OLD | NEW |
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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 [DeprecateAs=Attribute] attribute long deprecatedAttr; | 298 [DeprecateAs=Attribute] attribute long deprecatedAttr; |
299 | 299 |
300 [DeprecateAs=Method] void deprecatedMethod(); | 300 [DeprecateAs=Method] void deprecatedMethod(); |
301 [DeprecateAs=StaticMethod] static void deprecatedStaticMethod(); | 301 [DeprecateAs=StaticMethod] static void deprecatedStaticMethod(); |
302 | 302 |
303 [DeprecateAs=Constant] const unsigned short DEPRECATED_CONSTANT = 1; | 303 [DeprecateAs=Constant] const unsigned short DEPRECATED_CONSTANT = 1; |
304 | 304 |
305 // PutForwards | 305 // PutForwards |
306 [PutForwards=href] readonly attribute TestNode location; | 306 [PutForwards=href] readonly attribute TestNode location; |
307 [PutForwards=hrefThrows] readonly attribute TestNode locationWithException; | 307 [PutForwards=hrefThrows] readonly attribute TestNode locationWithException; |
| 308 |
| 309 // Reflected SVG animated attribute. |
| 310 [Reflect] attribute SVGAnimatedString animatedReflectedAttribute; |
308 }; | 311 }; |
309 | 312 |
310 // The following comment should not generate any code | 313 // The following comment should not generate any code |
311 // TestObject implements TestImplements; | 314 // TestObject implements TestImplements; |
312 | 315 |
OLD | NEW |