| 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();
|
| };
|
| }
|
|
|
|
|