| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 ShadowRoot youngerShadowRoot(in Node root) raises (DOMException); | 42 ShadowRoot youngerShadowRoot(in Node root) raises (DOMException); |
| 43 ShadowRoot olderShadowRoot(in Node root) raises (DOMException); | 43 ShadowRoot olderShadowRoot(in Node root) raises (DOMException); |
| 44 #else | 44 #else |
| 45 Node ensureShadowRoot(in Element host) raises (DOMException); | 45 Node ensureShadowRoot(in Element host) raises (DOMException); |
| 46 Node shadowRoot(in Element host) raises (DOMException); | 46 Node shadowRoot(in Element host) raises (DOMException); |
| 47 Node youngestShadowRoot(in Element host) raises (DOMException); | 47 Node youngestShadowRoot(in Element host) raises (DOMException); |
| 48 Node oldestShadowRoot(in Element host) raises (DOMException); | 48 Node oldestShadowRoot(in Element host) raises (DOMException); |
| 49 Node youngerShadowRoot(in Node root) raises (DOMException); | 49 Node youngerShadowRoot(in Node root) raises (DOMException); |
| 50 #endif | 50 #endif |
| 51 Element includerFor(in Node node) raises (DOMException); | 51 Element includerFor(in Node node) raises (DOMException); |
| 52 void removeShadowRoot(in Element host) raises (DOMException); | |
| 53 DOMString shadowPseudoId(in Element element) raises (DOMException); | 52 DOMString shadowPseudoId(in Element element) raises (DOMException); |
| 54 Element createContentElement(in Document document) raises(DOMException); | 53 Element createContentElement(in Document document) raises(DOMException); |
| 55 Element getElementByIdInShadowRoot(in Node shadowRoot, in DOMString id)
raises(DOMException); | 54 Element getElementByIdInShadowRoot(in Node shadowRoot, in DOMString id)
raises(DOMException); |
| 56 boolean isValidContentSelect(in Element contentElement) raises(DOMExcept
ion); | 55 boolean isValidContentSelect(in Element contentElement) raises(DOMExcept
ion); |
| 57 Node treeScopeRootNode(in Node node) raises (DOMException); | 56 Node treeScopeRootNode(in Node node) raises (DOMException); |
| 58 | 57 |
| 59 Node nextSiblingByWalker(in Node node) raises(DOMException); | 58 Node nextSiblingByWalker(in Node node) raises(DOMException); |
| 60 Node firstChildByWalker(in Node node) raises(DOMException); | 59 Node firstChildByWalker(in Node node) raises(DOMException); |
| 61 Node lastChildByWalker(in Node node) raises(DOMException); | 60 Node lastChildByWalker(in Node node) raises(DOMException); |
| 62 Node nextNodeByWalker(in Node node) raises(DOMException); | 61 Node nextNodeByWalker(in Node node) raises(DOMException); |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 in boolean ignoreClipping, in boolean allowShadowContent) raises (DO
MException); | 120 in boolean ignoreClipping, in boolean allowShadowContent) raises (DO
MException); |
| 122 | 121 |
| 123 void emitInspectorDidBeginFrame(); | 122 void emitInspectorDidBeginFrame(); |
| 124 void emitInspectorDidCancelFrame(); | 123 void emitInspectorDidCancelFrame(); |
| 125 | 124 |
| 126 boolean hasSpellingMarker(in Document document, in long from, in long le
ngth) raises (DOMException); | 125 boolean hasSpellingMarker(in Document document, in long from, in long le
ngth) raises (DOMException); |
| 127 boolean hasGrammarMarker(in Document document, in long from, in long len
gth) raises (DOMException); | 126 boolean hasGrammarMarker(in Document document, in long from, in long len
gth) raises (DOMException); |
| 128 | 127 |
| 129 unsigned long numberOfScrollableAreas(in Document document) raises (DOME
xception); | 128 unsigned long numberOfScrollableAreas(in Document document) raises (DOME
xception); |
| 130 | 129 |
| 130 boolean isPageBoxVisible(in Document document, in long pageNumber) raise
s (DOMException); |
| 131 |
| 131 readonly attribute InternalSettings settings; | 132 readonly attribute InternalSettings settings; |
| 132 | 133 |
| 134 void suspendAnimations(in Document document) raises (DOMException); |
| 135 void resumeAnimations(in Document document) raises (DOMException); |
| 136 |
| 133 #if defined(ENABLE_BATTERY_STATUS) && ENABLE_BATTERY_STATUS | 137 #if defined(ENABLE_BATTERY_STATUS) && ENABLE_BATTERY_STATUS |
| 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); | 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); |
| 135 #endif | 139 #endif |
| 136 | 140 |
| 137 #if defined(ENABLE_NETWORK_INFO) && ENABLE_NETWORK_INFO | 141 #if defined(ENABLE_NETWORK_INFO) && ENABLE_NETWORK_INFO |
| 138 void setNetworkInformation(in Document document, in DOMString eventType,
in long bandwidth, in boolean metered) raises (DOMException); | 142 void setNetworkInformation(in Document document, in DOMString eventType,
in long bandwidth, in boolean metered) raises (DOMException); |
| 139 #endif | 143 #endif |
| 140 | 144 |
| 141 [Conditional=INSPECTOR] unsigned long numberOfLiveNodes(); | 145 [Conditional=INSPECTOR] unsigned long numberOfLiveNodes(); |
| 142 [Conditional=INSPECTOR] unsigned long numberOfLiveDocuments(); | 146 [Conditional=INSPECTOR] unsigned long numberOfLiveDocuments(); |
| 143 [Conditional=INSPECTOR] sequence<String> consoleMessageArgumentCounts(in
Document document); | 147 [Conditional=INSPECTOR] sequence<String> consoleMessageArgumentCounts(in
Document document); |
| 144 | 148 |
| 145 #if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API | 149 #if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API |
| 146 void webkitWillEnterFullScreenForElement(in Document document, in Elemen
t element); | 150 void webkitWillEnterFullScreenForElement(in Document document, in Elemen
t element); |
| 147 void webkitDidEnterFullScreenForElement(in Document document, in Element
element); | 151 void webkitDidEnterFullScreenForElement(in Document document, in Element
element); |
| 148 void webkitWillExitFullScreenForElement(in Document document, in Element
element); | 152 void webkitWillExitFullScreenForElement(in Document document, in Element
element); |
| 149 void webkitDidExitFullScreenForElement(in Document document, in Element
element); | 153 void webkitDidExitFullScreenForElement(in Document document, in Element
element); |
| 150 #endif | 154 #endif |
| 151 }; | 155 }; |
| 152 } | 156 } |
| 153 | 157 |
| OLD | NEW |