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

Unified Diff: third_party/WebCore/testing/Internals.idl

Issue 9987001: Roll IDL forward to multivm@358 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Roll to 358 Created 8 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebCore/testing/InternalSettings.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebCore/testing/Internals.idl
diff --git a/third_party/WebCore/testing/Internals.idl b/third_party/WebCore/testing/Internals.idl
index f2200ffc4b159a0768ffdfaf602fc70f49875034..dd54fa2de6ef0e1fed2673b3d8a7a228fc58b6a6 100644
--- a/third_party/WebCore/testing/Internals.idl
+++ b/third_party/WebCore/testing/Internals.idl
@@ -55,9 +55,21 @@ module window {
Element getElementByIdInShadowRoot(in Node shadowRoot, in DOMString id) raises(DOMException);
boolean isValidContentSelect(in Element contentElement) raises(DOMException);
+ Node nextSiblingByWalker(in Node node) raises(DOMException);
+ Node firstChildByWalker(in Node node) raises(DOMException);
+ Node lastChildByWalker(in Node node) raises(DOMException);
+ Node nextNodeByWalker(in Node node) raises(DOMException);
+ Node previousNodeByWalker(in Node node) raises(DOMException);
+
+ Node nextSiblingInReifiedTree(in Node node) raises(DOMException);
+ Node firstChildInReifiedTree(in Node node) raises(DOMException);
+ Node lastChildInReifiedTree(in Node node) raises(DOMException);
+ Node traverseNextNodeInReifiedTree(in Node node) raises(DOMException);
+ Node traversePreviousNodeInReifiedTree(in Node node) raises(DOMException);
+
boolean attached(in Node node) raises(DOMException);
-#if defined(ENABLE_INPUT_COLOR) && ENABLE_INPUT_COLOR
+#if defined(ENABLE_INPUT_TYPE_COLOR) && ENABLE_INPUT_TYPE_COLOR
void selectColorInColorChooser(in Element element, in DOMString colorValue);
#endif
@@ -89,6 +101,7 @@ module window {
#if defined(ENABLE_TOUCH_ADJUSTMENT) && ENABLE_TOUCH_ADJUSTMENT
WebKitPoint touchPositionAdjustedToBestClickableNode(in long x, in long y, in long width, in long height, in Document document) raises (DOMException);
Node touchNodeAdjustedToBestClickableNode(in long x, in long y, in long width, in long height, in Document document) raises (DOMException);
+ ClientRect bestZoomableAreaForTouchPoint(in long x, in long y, in long width, in long height, in Document document) raises (DOMException);
#endif
long lastSpellCheckRequestSequence(in Document document) raises (DOMException);
@@ -101,7 +114,7 @@ module window {
boolean shouldDisplayTrackKind(in Document document, in DOMString trackKind) raises (DOMException);
#endif
- attribute [Custom] Array userPreferredLanguages;
+ attribute sequence<String> userPreferredLanguages;
unsigned long wheelEventHandlerCount(in Document document) raises (DOMException);
unsigned long touchEventHandlerCount(in Document document) raises (DOMException);
@@ -120,7 +133,11 @@ module window {
#if defined(ENABLE_BATTERY_STATUS) && ENABLE_BATTERY_STATUS
void setBatteryStatus(in Document document, in DOMString eventType, in boolean charging, in double chargingTime, in double dischargingTime, in double level) raises (DOMException);
-#endif
+#endif
+
+#if defined(ENABLE_NETWORK_INFO) && ENABLE_NETWORK_INFO
+ void setNetworkInformation(in Document document, in DOMString eventType, in long bandwidth, in boolean metered) raises (DOMException);
+#endif
[Conditional=INSPECTOR] unsigned long numberOfLiveNodes();
[Conditional=INSPECTOR] unsigned long numberOfLiveDocuments();
« no previous file with comments | « third_party/WebCore/testing/InternalSettings.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698