| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 attribute TestEnumType enumAttr; | 48 attribute TestEnumType enumAttr; |
| 49 readonly attribute TestEnumType readOnlyEnumAttr; | 49 readonly attribute TestEnumType readOnlyEnumAttr; |
| 50 attribute byte byteAttr; | 50 attribute byte byteAttr; |
| 51 attribute octet octetAttr; | 51 attribute octet octetAttr; |
| 52 attribute short shortAttr; | 52 attribute short shortAttr; |
| 53 attribute unsigned short unsignedShortAttr; | 53 attribute unsigned short unsignedShortAttr; |
| 54 attribute long longAttr; | 54 attribute long longAttr; |
| 55 attribute long long longLongAttr; | 55 attribute long long longLongAttr; |
| 56 attribute unsigned long long unsignedLongLongAttr; | 56 attribute unsigned long long unsignedLongLongAttr; |
| 57 attribute DOMString stringAttr; | 57 attribute DOMString stringAttr; |
| 58 attribute EventListener eventListenerAttr; | 58 attribute EventHandler eventHandlerAttr; |
| 59 [MeasureAs=TestFeature] attribute TestObject testObjAttr; | 59 [MeasureAs=TestFeature] attribute TestObject testObjAttr; |
| 60 | 60 |
| 61 // WK_ucfirst, WK_lcfirst exceptional cases. | 61 // WK_ucfirst, WK_lcfirst exceptional cases. |
| 62 attribute TestObject XMLObjAttr; | 62 attribute TestObject XMLObjAttr; |
| 63 attribute boolean create; | 63 attribute boolean create; |
| 64 | 64 |
| 65 // Reflected DOM attributes | 65 // Reflected DOM attributes |
| 66 [Reflect] attribute DOMString reflectedStringAttr; | 66 [Reflect] attribute DOMString reflectedStringAttr; |
| 67 [Reflect] attribute long reflectedIntegralAttr; | 67 [Reflect] attribute long reflectedIntegralAttr; |
| 68 [Reflect] attribute unsigned long reflectedUnsignedIntegralAttr; | 68 [Reflect] attribute unsigned long reflectedUnsignedIntegralAttr; |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 | 318 |
| 319 [DeprecateAs=Method] void deprecatedMethod(); | 319 [DeprecateAs=Method] void deprecatedMethod(); |
| 320 [DeprecateAs=StaticMethod] static void deprecatedStaticMethod(); | 320 [DeprecateAs=StaticMethod] static void deprecatedStaticMethod(); |
| 321 | 321 |
| 322 [DeprecateAs=Constant] const unsigned short DEPRECATED_CONSTANT = 1; | 322 [DeprecateAs=Constant] const unsigned short DEPRECATED_CONSTANT = 1; |
| 323 }; | 323 }; |
| 324 | 324 |
| 325 // The following comment should not generate any code | 325 // The following comment should not generate any code |
| 326 // TestObject implements TestImplements; | 326 // TestObject implements TestImplements; |
| 327 | 327 |
| OLD | NEW |