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

Side by Side Diff: third_party/WebCore/testing/Internals.idl

Issue 10048001: Roll IDL to multivm@375 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/WebCore/page/DOMWindow.idl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
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); 52 void removeShadowRoot(in Element host) raises (DOMException);
53 DOMString shadowPseudoId(in Element element) raises (DOMException); 53 DOMString shadowPseudoId(in Element element) raises (DOMException);
54 Element createContentElement(in Document document) raises(DOMException); 54 Element createContentElement(in Document document) raises(DOMException);
55 Element getElementByIdInShadowRoot(in Node shadowRoot, in DOMString id) raises(DOMException); 55 Element getElementByIdInShadowRoot(in Node shadowRoot, in DOMString id) raises(DOMException);
56 boolean isValidContentSelect(in Element contentElement) raises(DOMExcept ion); 56 boolean isValidContentSelect(in Element contentElement) raises(DOMExcept ion);
57 Node treeScopeRootNode(in Node node) raises (DOMException);
57 58
58 Node nextSiblingByWalker(in Node node) raises(DOMException); 59 Node nextSiblingByWalker(in Node node) raises(DOMException);
59 Node firstChildByWalker(in Node node) raises(DOMException); 60 Node firstChildByWalker(in Node node) raises(DOMException);
60 Node lastChildByWalker(in Node node) raises(DOMException); 61 Node lastChildByWalker(in Node node) raises(DOMException);
61 Node nextNodeByWalker(in Node node) raises(DOMException); 62 Node nextNodeByWalker(in Node node) raises(DOMException);
62 Node previousNodeByWalker(in Node node) raises(DOMException); 63 Node previousNodeByWalker(in Node node) raises(DOMException);
63 64
64 Node nextSiblingInReifiedTree(in Node node) raises(DOMException);
65 Node firstChildInReifiedTree(in Node node) raises(DOMException);
66 Node lastChildInReifiedTree(in Node node) raises(DOMException);
67 Node traverseNextNodeInReifiedTree(in Node node) raises(DOMException);
68 Node traversePreviousNodeInReifiedTree(in Node node) raises(DOMException );
69
70 boolean attached(in Node node) raises(DOMException); 65 boolean attached(in Node node) raises(DOMException);
71 66
72 #if defined(ENABLE_INPUT_TYPE_COLOR) && ENABLE_INPUT_TYPE_COLOR 67 #if defined(ENABLE_INPUT_TYPE_COLOR) && ENABLE_INPUT_TYPE_COLOR
73 void selectColorInColorChooser(in Element element, in DOMString colorVal ue); 68 void selectColorInColorChooser(in Element element, in DOMString colorVal ue);
74 #endif 69 #endif
75 70
76 ClientRect boundingBox(in Element element) raises(DOMException); 71 ClientRect boundingBox(in Element element) raises(DOMException);
77 72
78 ClientRectList inspectorHighlightRects(in Document document) raises (DOM Exception); 73 ClientRectList inspectorHighlightRects(in Document document) raises (DOM Exception);
79 74
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 boolean shouldDisplayTrackKind(in Document document, in DOMString trackK ind) raises (DOMException); 109 boolean shouldDisplayTrackKind(in Document document, in DOMString trackK ind) raises (DOMException);
115 #endif 110 #endif
116 111
117 attribute sequence<String> userPreferredLanguages; 112 attribute sequence<String> userPreferredLanguages;
118 113
119 unsigned long wheelEventHandlerCount(in Document document) raises (DOMEx ception); 114 unsigned long wheelEventHandlerCount(in Document document) raises (DOMEx ception);
120 unsigned long touchEventHandlerCount(in Document document) raises (DOMEx ception); 115 unsigned long touchEventHandlerCount(in Document document) raises (DOMEx ception);
121 116
122 NodeList nodesFromRect(in Document document, in long x, in long y, 117 NodeList nodesFromRect(in Document document, in long x, in long y,
123 in unsigned long topPadding, in unsigned long rightPadding, in unsig ned long bottomPadding, in unsigned long leftPadding, 118 in unsigned long topPadding, in unsigned long rightPadding, in unsig ned long bottomPadding, in unsigned long leftPadding,
124 in boolean ignoreClipping) raises (DOMException); 119 in boolean ignoreClipping, in boolean allowShadowContent) raises (DO MException);
125 120
126 void emitInspectorDidBeginFrame(); 121 void emitInspectorDidBeginFrame();
127 void emitInspectorDidCancelFrame(); 122 void emitInspectorDidCancelFrame();
128 123
129 boolean hasSpellingMarker(in Document document, in long from, in long le ngth) raises (DOMException); 124 boolean hasSpellingMarker(in Document document, in long from, in long le ngth) raises (DOMException);
130 boolean hasGrammarMarker(in Document document, in long from, in long len gth) raises (DOMException); 125 boolean hasGrammarMarker(in Document document, in long from, in long len gth) raises (DOMException);
131 126
132 readonly attribute InternalSettings settings; 127 readonly attribute InternalSettings settings;
133 128
134 #if defined(ENABLE_BATTERY_STATUS) && ENABLE_BATTERY_STATUS 129 #if defined(ENABLE_BATTERY_STATUS) && ENABLE_BATTERY_STATUS
135 void setBatteryStatus(in Document document, in DOMString eventType, in b oolean charging, in double chargingTime, in double dischargingTime, in double le vel) raises (DOMException); 130 void setBatteryStatus(in Document document, in DOMString eventType, in b oolean charging, in double chargingTime, in double dischargingTime, in double le vel) raises (DOMException);
136 #endif 131 #endif
137 132
138 #if defined(ENABLE_NETWORK_INFO) && ENABLE_NETWORK_INFO 133 #if defined(ENABLE_NETWORK_INFO) && ENABLE_NETWORK_INFO
139 void setNetworkInformation(in Document document, in DOMString eventType, in long bandwidth, in boolean metered) raises (DOMException); 134 void setNetworkInformation(in Document document, in DOMString eventType, in long bandwidth, in boolean metered) raises (DOMException);
140 #endif 135 #endif
141 136
142 [Conditional=INSPECTOR] unsigned long numberOfLiveNodes(); 137 [Conditional=INSPECTOR] unsigned long numberOfLiveNodes();
143 [Conditional=INSPECTOR] unsigned long numberOfLiveDocuments(); 138 [Conditional=INSPECTOR] unsigned long numberOfLiveDocuments();
144 }; 139 };
145 } 140 }
146 141
OLDNEW
« no previous file with comments | « third_party/WebCore/page/DOMWindow.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698