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

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

Issue 10837033: Roll IDL to multivm@733 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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 fde4577eb3cf7be2c8db9b4e805bb5c58b9fba28..26cd102ac9cb9fa8f0defe8a5ff2101d3b65f347 100644
--- a/third_party/WebCore/testing/Internals.idl
+++ b/third_party/WebCore/testing/Internals.idl
@@ -56,6 +56,7 @@ module window {
boolean isValidContentSelect(in Element contentElement) raises(DOMException);
Node treeScopeRootNode(in Node node) raises (DOMException);
Node parentTreeScope(in Node node) raises (DOMException);
+ void setAuthorShadowDOMForAnyElementEnabled(in boolean isEnabled);
Node nextSiblingByWalker(in Node node) raises(DOMException);
Node firstChildByWalker(in Node node) raises(DOMException);
@@ -86,6 +87,7 @@ module window {
unsigned long markerCountForNode(in Node node, in DOMString markerType) raises(DOMException);
Range markerRangeForNode(in Node node, in DOMString markerType, in unsigned long index) raises(DOMException);
DOMString markerDescriptionForNode(in Node node, in DOMString markerType, in unsigned long index) raises(DOMException);
+ void addTextMatchMarker(in Range range, in boolean isActive);
void setScrollViewPosition(in Document document, in long x, in long y) raises(DOMException);
@@ -132,6 +134,7 @@ module window {
unsigned long wheelEventHandlerCount(in Document document) raises (DOMException);
unsigned long touchEventHandlerCount(in Document document) raises (DOMException);
+ boolean hasTouchEventListener(in Document document) raises (DOMException);
NodeList nodesFromRect(in Document document, in long x, in long y,
in unsigned long topPadding, in unsigned long rightPadding, in unsigned long bottomPadding, in unsigned long leftPadding,
@@ -153,6 +156,8 @@ module window {
void suspendAnimations(in Document document) raises (DOMException);
void resumeAnimations(in Document document) raises (DOMException);
+ void garbageCollectDocumentResources(in Document document) raises (DOMException);
+
void allowRoundingHacks();
#if defined(ENABLE_BATTERY_STATUS) && ENABLE_BATTERY_STATUS
@@ -168,6 +173,7 @@ module window {
[Conditional=INSPECTOR] sequence<String> consoleMessageArgumentCounts(in Document document);
DOMString counterValue(in Element element);
+ long pageNumber(in Element element, in [Optional] float pageWidth, in [Optional] float pageHeight);
DOMString[] iconURLs(in Document document);
#if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API
@@ -179,6 +185,8 @@ module window {
void registerURLSchemeAsBypassingContentSecurityPolicy(in DOMString scheme);
void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(in DOMString scheme);
+
+ FastMallocStatistics fastMallocStatistics();
};
}
« 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