Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Side by Side Diff: third_party/WebCore/css/CSSPrimitiveValue.idl

Issue 12316066: Update WebKit idl files after chrome roll (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove deltaMode from WheelEvent template. Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 const unsigned short CSS_VW = 26; 51 const unsigned short CSS_VW = 26;
52 const unsigned short CSS_VH = 27; 52 const unsigned short CSS_VH = 27;
53 const unsigned short CSS_VMIN = 28; 53 const unsigned short CSS_VMIN = 28;
54 const unsigned short CSS_VMAX = 29;
54 55
55 readonly attribute unsigned short primitiveType; 56 readonly attribute unsigned short primitiveType;
56 57
57 [ObjCLegacyUnnamedParameters] void setFloatValue(in [Optional=DefaultIsUndef ined] unsigned short unitType, 58 [ObjCLegacyUnnamedParameters] void setFloatValue(in [Optional=DefaultIsUndef ined] unsigned short unitType,
58 in [Optional=DefaultIsUndefined] float flo atValue) 59 in [Optional=DefaultIsUndefined] float flo atValue)
59 raises(DOMException); 60 raises(DOMException);
60 float getFloatValue(in [Optional=DefaultIsUndefined] unsigned short unitType ) 61 float getFloatValue(in [Optional=DefaultIsUndefined] unsigned short unitType )
61 raises(DOMException); 62 raises(DOMException);
62 [ObjCLegacyUnnamedParameters] void setStringValue(in [Optional=DefaultIsUnde fined] unsigned short stringType, 63 [ObjCLegacyUnnamedParameters] void setStringValue(in [Optional=DefaultIsUnde fined] unsigned short stringType,
63 in [Optional=DefaultIsUndefined] DOMStrin g stringValue) 64 in [Optional=DefaultIsUndefined] DOMStrin g stringValue)
64 raises(DOMException); 65 raises(DOMException);
65 DOMString getStringValue() 66 DOMString getStringValue()
66 raises(DOMException); 67 raises(DOMException);
67 Counter getCounterValue() 68 Counter getCounterValue()
68 raises(DOMException); 69 raises(DOMException);
69 Rect getRectValue() 70 Rect getRectValue()
70 raises(DOMException); 71 raises(DOMException);
71 RGBColor getRGBColorValue() 72 RGBColor getRGBColorValue()
72 raises(DOMException); 73 raises(DOMException);
73 }; 74 };
74 75
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698