| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 [ | 22 [ |
| 23 JSCustomMarkFunction, | 23 JSCustomMarkFunction, |
| 24 JSGenerateIsReachable, | 24 JSGenerateIsReachable, |
| 25 JSCustomGetOwnPropertySlotAndDescriptor, | 25 JSCustomGetOwnPropertySlotAndDescriptor, |
| 26 CustomNamedSetter, | 26 CustomNamedSetter, |
| 27 #if defined(V8_BINDING) && V8_BINDING | 27 #if defined(V8_BINDING) && V8_BINDING |
| 28 NamedGetter, | 28 NamedGetter, |
| 29 #endif | 29 #endif |
| 30 IndexedGetter, | 30 IndexedGetter, |
| 31 CustomEnumerateProperty, | 31 CustomEnumerateProperty, |
| 32 V8DependentLifetime | 32 V8DependentLifetime, |
| 33 V8SkipVTableValidation |
| 33 ] interface CSSStyleDeclaration { | 34 ] interface CSSStyleDeclaration { |
| 34 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString] attribute
DOMString cssText | 35 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString] attribute
DOMString cssText |
| 35 setter raises(DOMException); | 36 setter raises(DOMException); |
| 36 | 37 |
| 37 [TreatReturnedNullStringAs=Null] DOMString getPropertyValue(in [Opt
ional=DefaultIsUndefined] DOMString propertyName); | 38 [TreatReturnedNullStringAs=Null] DOMString getPropertyValue(in [Opt
ional=DefaultIsUndefined] DOMString propertyName); |
| 38 [JSCustom] CSSValue getPropertyCSSValue(in [Optional=DefaultIsUnde
fined] DOMString propertyName); | 39 [JSCustom] CSSValue getPropertyCSSValue(in [Optional=DefaultIsUnde
fined] DOMString propertyName); |
| 39 [TreatReturnedNullStringAs=Null] DOMString removeProperty(in [Optio
nal=DefaultIsUndefined] DOMString propertyName) | 40 [TreatReturnedNullStringAs=Null] DOMString removeProperty(in [Optio
nal=DefaultIsUndefined] DOMString propertyName) |
| 40 raises(DOMException); | 41 raises(DOMException); |
| 41 [TreatReturnedNullStringAs=Null] DOMString getPropertyPriority(in [
Optional=DefaultIsUndefined] DOMString propertyName); | 42 [TreatReturnedNullStringAs=Null] DOMString getPropertyPriority(in [
Optional=DefaultIsUndefined] DOMString propertyName); |
| 42 [ObjCLegacyUnnamedParameters] void setProperty(in [Optional=DefaultIsUndefin
ed] DOMString propertyName, | 43 [ObjCLegacyUnnamedParameters] void setProperty(in [Optional=DefaultIsUndefin
ed] DOMString propertyName, |
| 43 in [TreatNullAs=NullString,Optional=DefaultI
sUndefined] DOMString value, | 44 in [TreatNullAs=NullString,Optional=DefaultI
sUndefined] DOMString value, |
| 44 in [Optional=DefaultIsUndefined] DOMString p
riority) | 45 in [Optional=DefaultIsUndefined] DOMString p
riority) |
| 45 raises(DOMException); | 46 raises(DOMException); |
| 46 | 47 |
| 47 readonly attribute unsigned long length; | 48 readonly attribute unsigned long length; |
| 48 DOMString item(in [Optional=DefaultIsUndefined] unsigned long index
); | 49 DOMString item(in [Optional=DefaultIsUndefined] unsigned long index
); |
| 49 readonly attribute CSSRule parentRule; | 50 readonly attribute CSSRule parentRule; |
| 50 | 51 |
| 51 // Extensions | 52 // Extensions |
| 52 [TreatReturnedNullStringAs=Null] DOMString getPropertyShorthand(in
[Optional=DefaultIsUndefined] DOMString propertyName); | 53 [TreatReturnedNullStringAs=Null] DOMString getPropertyShorthand(in
[Optional=DefaultIsUndefined] DOMString propertyName); |
| 53 boolean isPropertyImplicit(in [Optional=DefaultIsUndefined] DOMSt
ring propertyName); | 54 boolean isPropertyImplicit(in [Optional=DefaultIsUndefined] DOMSt
ring propertyName); |
| 54 }; | 55 }; |
| 55 | 56 |
| OLD | NEW |