| 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 | 298 // DeprecateAs |
| 299 [DeprecateAs=StaticReadonlyAttribute] static readonly attribute long depreca
tedStaticReadOnlyAttr; | 299 [DeprecateAs=StaticReadonlyAttribute] static readonly attribute long depreca
tedStaticReadOnlyAttr; |
| 300 [DeprecateAs=StaticAttribute] static attribute long deprecatedStaticAttr; | 300 [DeprecateAs=StaticAttribute] static attribute long deprecatedStaticAttr; |
| 301 [DeprecateAs=ReadonlyAttribute] readonly attribute long deprecatedReadonlyAt
tr; | 301 [DeprecateAs=ReadonlyAttribute] readonly attribute long deprecatedReadonlyAt
tr; |
| 302 [DeprecateAs=Attribute] attribute long deprecatedAttr; | 302 [DeprecateAs=Attribute] attribute long deprecatedAttr; |
| 303 | 303 |
| 304 [DeprecateAs=Method] void deprecatedMethod(); | 304 [DeprecateAs=Method] void deprecatedMethod(); |
| 305 [DeprecateAs=StaticMethod] static void deprecatedStaticMethod(); | 305 [DeprecateAs=StaticMethod] static void deprecatedStaticMethod(); |
| 306 | 306 |
| 307 [DeprecateAs=Constant] const unsigned short DEPRECATED_CONSTANT = 1; | 307 [DeprecateAs=Constant] const unsigned short DEPRECATED_CONSTANT = 1; |
| 308 |
| 309 // PutForwards |
| 310 [PutForwards=href] readonly attribute TestNode location; |
| 311 [PutForwards=hrefThrows] readonly attribute TestNode locationWithException; |
| 308 }; | 312 }; |
| 309 | 313 |
| 310 // The following comment should not generate any code | 314 // The following comment should not generate any code |
| 311 // TestObject implements TestImplements; | 315 // TestObject implements TestImplements; |
| 312 | 316 |
| OLD | NEW |