OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
11 * notice, this list of conditions and the following disclaimer in the | 11 * notice, this list of conditions and the following disclaimer in the |
12 * documentation and/or other materials provided with the distribution. | 12 * documentation and/or other materials provided with the distribution. |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 Node nextNodeByWalker(in Node node) raises(DOMException); | 61 Node nextNodeByWalker(in Node node) raises(DOMException); |
62 Node previousNodeByWalker(in Node node) raises(DOMException); | 62 Node previousNodeByWalker(in Node node) raises(DOMException); |
63 | 63 |
64 boolean attached(in Node node) raises(DOMException); | 64 boolean attached(in Node node) raises(DOMException); |
65 | 65 |
66 DOMString visiblePlaceholder(in Element element); | 66 DOMString visiblePlaceholder(in Element element); |
67 #if defined(ENABLE_INPUT_TYPE_COLOR) && ENABLE_INPUT_TYPE_COLOR | 67 #if defined(ENABLE_INPUT_TYPE_COLOR) && ENABLE_INPUT_TYPE_COLOR |
68 void selectColorInColorChooser(in Element element, in DOMString colorVal
ue); | 68 void selectColorInColorChooser(in Element element, in DOMString colorVal
ue); |
69 #endif | 69 #endif |
70 | 70 |
| 71 ClientRect absoluteCaretBounds(in Document document) raises(DOMException
); |
| 72 |
71 ClientRect boundingBox(in Element element) raises(DOMException); | 73 ClientRect boundingBox(in Element element) raises(DOMException); |
72 | 74 |
73 ClientRectList inspectorHighlightRects(in Document document) raises (DOM
Exception); | 75 ClientRectList inspectorHighlightRects(in Document document) raises (DOM
Exception); |
74 | 76 |
75 void setBackgroundBlurOnNode(in Node node, in long blurLength) raises(DO
MException); | 77 void setBackgroundBlurOnNode(in Node node, in long blurLength) raises(DO
MException); |
76 | 78 |
77 unsigned long markerCountForNode(in Node node, in DOMString markerType)
raises(DOMException); | 79 unsigned long markerCountForNode(in Node node, in DOMString markerType)
raises(DOMException); |
78 Range markerRangeForNode(in Node node, in DOMString markerType, in unsig
ned long index) raises(DOMException); | 80 Range markerRangeForNode(in Node node, in DOMString markerType, in unsig
ned long index) raises(DOMException); |
79 DOMString markerDescriptionForNode(in Node node, in DOMString markerType
, in unsigned long index) raises(DOMException); | 81 DOMString markerDescriptionForNode(in Node node, in DOMString markerType
, in unsigned long index) raises(DOMException); |
80 | 82 |
81 void setScrollViewPosition(in Document document, in long x, in long y) r
aises(DOMException); | 83 void setScrollViewPosition(in Document document, in long x, in long y) r
aises(DOMException); |
82 | 84 |
83 void setPagination(in Document document, in DOMString mode, in long gap)
raises(DOMException); | 85 void setPagination(in Document document, in DOMString mode, in long gap)
raises(DOMException); |
84 | 86 |
85 boolean wasLastChangeUserEdit(in Element textField) raises (DOMException
); | 87 boolean wasLastChangeUserEdit(in Element textField) raises (DOMException
); |
86 DOMString suggestedValue(in Element inputElement) raises (DOMException); | 88 DOMString suggestedValue(in Element inputElement) raises (DOMException); |
87 void setSuggestedValue(in Element inputElement, in DOMString value) rais
es (DOMException); | 89 void setSuggestedValue(in Element inputElement, in DOMString value) rais
es (DOMException); |
| 90 void setEditingValue(in Element inputElement, in DOMString value) raises
(DOMException); |
88 | 91 |
89 void paintControlTints(in Document document) raises (DOMException); | 92 void paintControlTints(in Document document) raises (DOMException); |
90 | 93 |
91 void scrollElementToRect(in Element element, in long x, in long y, in lo
ng w, in long h) raises (DOMException); | 94 void scrollElementToRect(in Element element, in long x, in long y, in lo
ng w, in long h) raises (DOMException); |
92 | 95 |
93 Range rangeFromLocationAndLength(in Element scope, in long rangeLocation
, in long rangeLength) raises (DOMException); | 96 Range rangeFromLocationAndLength(in Element scope, in long rangeLocation
, in long rangeLength) raises (DOMException); |
94 unsigned long locationFromRange(in Element scope, in Range range) raises
(DOMException); | 97 unsigned long locationFromRange(in Element scope, in Range range) raises
(DOMException); |
95 unsigned long lengthFromRange(in Element scope, in Range range) raises (
DOMException); | 98 unsigned long lengthFromRange(in Element scope, in Range range) raises (
DOMException); |
96 DOMString rangeAsText(in Range range) raises (DOMException); | 99 DOMString rangeAsText(in Range range) raises (DOMException); |
97 | 100 |
(...skipping 29 matching lines...) Expand all Loading... |
127 | 130 |
128 unsigned long numberOfScrollableAreas(in Document document) raises (DOME
xception); | 131 unsigned long numberOfScrollableAreas(in Document document) raises (DOME
xception); |
129 | 132 |
130 boolean isPageBoxVisible(in Document document, in long pageNumber) raise
s (DOMException); | 133 boolean isPageBoxVisible(in Document document, in long pageNumber) raise
s (DOMException); |
131 | 134 |
132 readonly attribute InternalSettings settings; | 135 readonly attribute InternalSettings settings; |
133 | 136 |
134 void suspendAnimations(in Document document) raises (DOMException); | 137 void suspendAnimations(in Document document) raises (DOMException); |
135 void resumeAnimations(in Document document) raises (DOMException); | 138 void resumeAnimations(in Document document) raises (DOMException); |
136 | 139 |
| 140 void allowRoundingHacks(); |
| 141 |
137 #if defined(ENABLE_BATTERY_STATUS) && ENABLE_BATTERY_STATUS | 142 #if defined(ENABLE_BATTERY_STATUS) && ENABLE_BATTERY_STATUS |
138 void setBatteryStatus(in Document document, in DOMString eventType, in b
oolean charging, in double chargingTime, in double dischargingTime, in double le
vel) raises (DOMException); | 143 void setBatteryStatus(in Document document, in DOMString eventType, in b
oolean charging, in double chargingTime, in double dischargingTime, in double le
vel) raises (DOMException); |
139 #endif | 144 #endif |
140 | 145 |
141 #if defined(ENABLE_NETWORK_INFO) && ENABLE_NETWORK_INFO | 146 #if defined(ENABLE_NETWORK_INFO) && ENABLE_NETWORK_INFO |
142 void setNetworkInformation(in Document document, in DOMString eventType,
in long bandwidth, in boolean metered) raises (DOMException); | 147 void setNetworkInformation(in Document document, in DOMString eventType,
in long bandwidth, in boolean metered) raises (DOMException); |
143 #endif | 148 #endif |
144 | 149 |
145 [Conditional=INSPECTOR] unsigned long numberOfLiveNodes(); | 150 [Conditional=INSPECTOR] unsigned long numberOfLiveNodes(); |
146 [Conditional=INSPECTOR] unsigned long numberOfLiveDocuments(); | 151 [Conditional=INSPECTOR] unsigned long numberOfLiveDocuments(); |
147 [Conditional=INSPECTOR] sequence<String> consoleMessageArgumentCounts(in
Document document); | 152 [Conditional=INSPECTOR] sequence<String> consoleMessageArgumentCounts(in
Document document); |
148 | 153 |
149 #if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API | 154 #if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API |
150 void webkitWillEnterFullScreenForElement(in Document document, in Elemen
t element); | 155 void webkitWillEnterFullScreenForElement(in Document document, in Elemen
t element); |
151 void webkitDidEnterFullScreenForElement(in Document document, in Element
element); | 156 void webkitDidEnterFullScreenForElement(in Document document, in Element
element); |
152 void webkitWillExitFullScreenForElement(in Document document, in Element
element); | 157 void webkitWillExitFullScreenForElement(in Document document, in Element
element); |
153 void webkitDidExitFullScreenForElement(in Document document, in Element
element); | 158 void webkitDidExitFullScreenForElement(in Document document, in Element
element); |
154 #endif | 159 #endif |
155 }; | 160 }; |
156 } | 161 } |
157 | 162 |
OLD | NEW |