| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 Node treeScopeRootNode(in Node node) raises (DOMException); | 57 Node treeScopeRootNode(in Node node) raises (DOMException); |
| 58 | 58 |
| 59 Node nextSiblingByWalker(in Node node) raises(DOMException); | 59 Node nextSiblingByWalker(in Node node) raises(DOMException); |
| 60 Node firstChildByWalker(in Node node) raises(DOMException); | 60 Node firstChildByWalker(in Node node) raises(DOMException); |
| 61 Node lastChildByWalker(in Node node) raises(DOMException); | 61 Node lastChildByWalker(in Node node) raises(DOMException); |
| 62 Node nextNodeByWalker(in Node node) raises(DOMException); | 62 Node nextNodeByWalker(in Node node) raises(DOMException); |
| 63 Node previousNodeByWalker(in Node node) raises(DOMException); | 63 Node previousNodeByWalker(in Node node) raises(DOMException); |
| 64 | 64 |
| 65 boolean attached(in Node node) raises(DOMException); | 65 boolean attached(in Node node) raises(DOMException); |
| 66 | 66 |
| 67 DOMString visiblePlaceholder(in Element element); |
| 67 #if defined(ENABLE_INPUT_TYPE_COLOR) && ENABLE_INPUT_TYPE_COLOR | 68 #if defined(ENABLE_INPUT_TYPE_COLOR) && ENABLE_INPUT_TYPE_COLOR |
| 68 void selectColorInColorChooser(in Element element, in DOMString colorVal
ue); | 69 void selectColorInColorChooser(in Element element, in DOMString colorVal
ue); |
| 69 #endif | 70 #endif |
| 70 | 71 |
| 71 ClientRect boundingBox(in Element element) raises(DOMException); | 72 ClientRect boundingBox(in Element element) raises(DOMException); |
| 72 | 73 |
| 73 ClientRectList inspectorHighlightRects(in Document document) raises (DOM
Exception); | 74 ClientRectList inspectorHighlightRects(in Document document) raises (DOM
Exception); |
| 74 | 75 |
| 75 void setBackgroundBlurOnNode(in Node node, in long blurLength) raises(DO
MException); | 76 void setBackgroundBlurOnNode(in Node node, in long blurLength) raises(DO
MException); |
| 76 | 77 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 #if defined(ENABLE_BATTERY_STATUS) && ENABLE_BATTERY_STATUS | 133 #if defined(ENABLE_BATTERY_STATUS) && ENABLE_BATTERY_STATUS |
| 133 void setBatteryStatus(in Document document, in DOMString eventType, in b
oolean charging, in double chargingTime, in double dischargingTime, in double le
vel) raises (DOMException); | 134 void setBatteryStatus(in Document document, in DOMString eventType, in b
oolean charging, in double chargingTime, in double dischargingTime, in double le
vel) raises (DOMException); |
| 134 #endif | 135 #endif |
| 135 | 136 |
| 136 #if defined(ENABLE_NETWORK_INFO) && ENABLE_NETWORK_INFO | 137 #if defined(ENABLE_NETWORK_INFO) && ENABLE_NETWORK_INFO |
| 137 void setNetworkInformation(in Document document, in DOMString eventType,
in long bandwidth, in boolean metered) raises (DOMException); | 138 void setNetworkInformation(in Document document, in DOMString eventType,
in long bandwidth, in boolean metered) raises (DOMException); |
| 138 #endif | 139 #endif |
| 139 | 140 |
| 140 [Conditional=INSPECTOR] unsigned long numberOfLiveNodes(); | 141 [Conditional=INSPECTOR] unsigned long numberOfLiveNodes(); |
| 141 [Conditional=INSPECTOR] unsigned long numberOfLiveDocuments(); | 142 [Conditional=INSPECTOR] unsigned long numberOfLiveDocuments(); |
| 143 |
| 144 #if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API |
| 145 void webkitWillEnterFullScreenForElement(in Document document, in Elemen
t element); |
| 146 void webkitDidEnterFullScreenForElement(in Document document, in Element
element); |
| 147 void webkitWillExitFullScreenForElement(in Document document, in Element
element); |
| 148 void webkitDidExitFullScreenForElement(in Document document, in Element
element); |
| 149 #endif |
| 142 }; | 150 }; |
| 143 } | 151 } |
| 144 | 152 |
| OLD | NEW |