| Index: third_party/WebCore/testing/Internals.idl
|
| diff --git a/third_party/WebCore/testing/Internals.idl b/third_party/WebCore/testing/Internals.idl
|
| index 8191d5fd0b8232bc6df101de81e5a9b7593130c9..2f17f5558e2585bd22f26276cdefe2cb0a700335 100644
|
| --- a/third_party/WebCore/testing/Internals.idl
|
| +++ b/third_party/WebCore/testing/Internals.idl
|
| @@ -55,6 +55,7 @@ module window {
|
| Element getElementByIdInShadowRoot(in Node shadowRoot, in DOMString id) raises(DOMException);
|
| boolean isValidContentSelect(in Element contentElement) raises(DOMException);
|
| Node treeScopeRootNode(in Node node) raises (DOMException);
|
| + Node parentTreeScope(in Node node) raises (DOMException);
|
|
|
| Node nextSiblingByWalker(in Node node) raises(DOMException);
|
| Node firstChildByWalker(in Node node) raises(DOMException);
|
| @@ -131,6 +132,7 @@ module window {
|
|
|
| boolean hasSpellingMarker(in Document document, in long from, in long length) raises (DOMException);
|
| boolean hasGrammarMarker(in Document document, in long from, in long length) raises (DOMException);
|
| + boolean hasAutocorrectedMarker(in Document document, in long from, in long length) raises (DOMException);
|
|
|
| unsigned long numberOfScrollableAreas(in Document document) raises (DOMException);
|
|
|
| @@ -148,7 +150,7 @@ module window {
|
| #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);
|
| + void setNetworkInformation(in Document document, in DOMString eventType, in double bandwidth, in boolean metered) raises (DOMException);
|
| #endif
|
|
|
| [Conditional=INSPECTOR] unsigned long numberOfLiveNodes();
|
| @@ -163,6 +165,9 @@ module window {
|
| void webkitWillExitFullScreenForElement(in Document document, in Element element);
|
| void webkitDidExitFullScreenForElement(in Document document, in Element element);
|
| #endif
|
| +
|
| + void registerURLSchemeAsBypassingContentSecurityPolicy(in DOMString scheme);
|
| + void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(in DOMString scheme);
|
| };
|
| }
|
|
|
|
|