| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 [Reflect] readonly attribute unsigned long reflectReadonlyUnsignedLongAttrib
ute; | 146 [Reflect] readonly attribute unsigned long reflectReadonlyUnsignedLongAttrib
ute; |
| 147 // [Reflect] special names | 147 // [Reflect] special names |
| 148 [Reflect] readonly attribute DOMString id; | 148 [Reflect] readonly attribute DOMString id; |
| 149 [Reflect] readonly attribute DOMString name; | 149 [Reflect] readonly attribute DOMString name; |
| 150 [Reflect] readonly attribute DOMString class; | 150 [Reflect] readonly attribute DOMString class; |
| 151 [Reflect=id] readonly attribute DOMString reflectedId; | 151 [Reflect=id] readonly attribute DOMString reflectedId; |
| 152 [Reflect=name] readonly attribute DOMString reflectedName; | 152 [Reflect=name] readonly attribute DOMString reflectedName; |
| 153 [Reflect=class] readonly attribute DOMString reflectedClass; | 153 [Reflect=class] readonly attribute DOMString reflectedClass; |
| 154 [RuntimeEnabled=FeatureName] attribute long runtimeEnabledLongAttribute; | 154 [RuntimeEnabled=FeatureName] attribute long runtimeEnabledLongAttribute; |
| 155 [Conditional=Condition, RuntimeEnabled=FeatureName] attribute long condition
alEnabledAtRuntimeLongAttribute; | 155 [Conditional=Condition, RuntimeEnabled=FeatureName] attribute long condition
alEnabledAtRuntimeLongAttribute; |
| 156 [SetterCallWith=ActiveWindow&FirstWindow] readonly attribute DOMString sette
rCallWithActiveWindowAndFirstWindowReadonlyStringAttribute; // FIXME: stub test
case b/c readonly, becomes real test case when implement setters | 156 [SetterCallWith=ActiveWindow&FirstWindow] attribute DOMString setterCallWith
ActiveWindowAndFirstWindowStringAttribute; |
| 157 [SetterRaisesException] attribute long setterRaisesExceptionLongAttribute; | 157 [SetterRaisesException] attribute long setterRaisesExceptionLongAttribute; |
| 158 [StrictTypeChecking] readonly attribute float strictTypeCheckingReadonlyFloa
tAttribute; // FIXME: only applicable to writable attributes, implement with se
tters | 158 [StrictTypeChecking] readonly attribute float strictTypeCheckingReadonlyFloa
tAttribute; // FIXME: only applicable to writable attributes, implement with se
tters |
| 159 [StrictTypeChecking] readonly attribute TestInterface strictTypeCheckingRead
onlyTestInterfaceAttribute; // FIXME: only applicable to writable attributes, i
mplement with setters | 159 [StrictTypeChecking] readonly attribute TestInterface strictTypeCheckingRead
onlyTestInterfaceAttribute; // FIXME: only applicable to writable attributes, i
mplement with setters |
| 160 [TreatNullAs=NullString] readonly attribute DOMString treatNullAsNullStringR
eadonlyStringAttribute; // FIXME: only applicable to writable attributes, imple
ment with setters | 160 [TreatNullAs=NullString] readonly attribute DOMString treatNullAsNullStringR
eadonlyStringAttribute; // FIXME: only applicable to writable attributes, imple
ment with setters |
| 161 [TreatReturnedNullStringAs=Null] attribute DOMString treatReturnedNullString
AsNullStringAttribute; | 161 [TreatReturnedNullStringAs=Null] attribute DOMString treatReturnedNullString
AsNullStringAttribute; |
| 162 [TreatReturnedNullStringAs=Undefined] attribute DOMString treatReturnedNullS
tringAsUndefinedStringAttribute; | 162 [TreatReturnedNullStringAs=Undefined] attribute DOMString treatReturnedNullS
tringAsUndefinedStringAttribute; |
| 163 [Reflect, URL] readonly attribute DOMString urlReadonlyStringAttribute; | 163 [Reflect, URL] readonly attribute DOMString urlReadonlyStringAttribute; |
| 164 [Reflect=ReflectUrlAttribute, URL] readonly attribute DOMString urlReadonlyS
tringAttribute; | 164 [Reflect=ReflectUrlAttribute, URL] readonly attribute DOMString urlReadonlyS
tringAttribute; |
| 165 [Unforgeable] attribute long unforgeableLongAttribute; | 165 [Unforgeable] attribute long unforgeableLongAttribute; |
| 166 }; | 166 }; |
| OLD | NEW |