| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 const unsigned short CSS_HZ = 16; | 41 const unsigned short CSS_HZ = 16; |
| 42 const unsigned short CSS_KHZ = 17; | 42 const unsigned short CSS_KHZ = 17; |
| 43 const unsigned short CSS_DIMENSION = 18; | 43 const unsigned short CSS_DIMENSION = 18; |
| 44 const unsigned short CSS_STRING = 19; | 44 const unsigned short CSS_STRING = 19; |
| 45 const unsigned short CSS_URI = 20; | 45 const unsigned short CSS_URI = 20; |
| 46 const unsigned short CSS_IDENT = 21; | 46 const unsigned short CSS_IDENT = 21; |
| 47 const unsigned short CSS_ATTR = 22; | 47 const unsigned short CSS_ATTR = 22; |
| 48 const unsigned short CSS_COUNTER = 23; | 48 const unsigned short CSS_COUNTER = 23; |
| 49 const unsigned short CSS_RECT = 24; | 49 const unsigned short CSS_RECT = 24; |
| 50 const unsigned short CSS_RGBCOLOR = 25; | 50 const unsigned short CSS_RGBCOLOR = 25; |
| 51 | 51 const unsigned short CSS_VW = 26; |
| 52 const unsigned short CSS_VH = 27; |
| 53 const unsigned short CSS_VMIN = 28; |
| 54 |
| 52 readonly attribute unsigned short primitiveType; | 55 readonly attribute unsigned short primitiveType; |
| 53 | 56 |
| 54 [ObjCLegacyUnnamedParameters] void setFloatValue(in [Optional=DefaultIsU
ndefined] unsigned short unitType, | 57 [ObjCLegacyUnnamedParameters] void setFloatValue(in [Optional=DefaultIsU
ndefined] unsigned short unitType, |
| 55 in [Optional=DefaultIsUndefined] float
floatValue) | 58 in [Optional=DefaultIsUndefined] float
floatValue) |
| 56 raises(DOMException); | 59 raises(DOMException); |
| 57 float getFloatValue(in [Optional=DefaultIsUndefined] unsigned short unit
Type) | 60 float getFloatValue(in [Optional=DefaultIsUndefined] unsigned short unit
Type) |
| 58 raises(DOMException); | 61 raises(DOMException); |
| 59 [ObjCLegacyUnnamedParameters] void setStringValue(in [Optional=DefaultIs
Undefined] unsigned short stringType, | 62 [ObjCLegacyUnnamedParameters] void setStringValue(in [Optional=DefaultIs
Undefined] unsigned short stringType, |
| 60 in [Optional=DefaultIsUndefined] DOMS
tring stringValue) | 63 in [Optional=DefaultIsUndefined] DOMS
tring stringValue) |
| 61 raises(DOMException); | 64 raises(DOMException); |
| 62 DOMString getStringValue() | 65 DOMString getStringValue() |
| 63 raises(DOMException); | 66 raises(DOMException); |
| 64 Counter getCounterValue() | 67 Counter getCounterValue() |
| 65 raises(DOMException); | 68 raises(DOMException); |
| 66 Rect getRectValue() | 69 Rect getRectValue() |
| 67 raises(DOMException); | 70 raises(DOMException); |
| 68 RGBColor getRGBColorValue() | 71 RGBColor getRGBColorValue() |
| 69 raises(DOMException); | 72 raises(DOMException); |
| 70 }; | 73 }; |
| 71 | 74 |
| 72 } | 75 } |
| OLD | NEW |