| Index: third_party/WebCore/testing/Internals.idl
|
| diff --git a/third_party/WebCore/testing/Internals.idl b/third_party/WebCore/testing/Internals.idl
|
| index 00ebd5008dac33fb6cc9257a9a51c3b86f119285..9faf34eb4291e751b0dceec038a61a19ed5ae87e 100644
|
| --- a/third_party/WebCore/testing/Internals.idl
|
| +++ b/third_party/WebCore/testing/Internals.idl
|
| @@ -64,6 +64,7 @@ module window {
|
|
|
| boolean attached(in Node node) raises(DOMException);
|
|
|
| + DOMString visiblePlaceholder(in Element element);
|
| #if defined(ENABLE_INPUT_TYPE_COLOR) && ENABLE_INPUT_TYPE_COLOR
|
| void selectColorInColorChooser(in Element element, in DOMString colorValue);
|
| #endif
|
| @@ -139,6 +140,13 @@ module window {
|
|
|
| [Conditional=INSPECTOR] unsigned long numberOfLiveNodes();
|
| [Conditional=INSPECTOR] unsigned long numberOfLiveDocuments();
|
| +
|
| +#if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API
|
| + void webkitWillEnterFullScreenForElement(in Document document, in Element element);
|
| + void webkitDidEnterFullScreenForElement(in Document document, in Element element);
|
| + void webkitWillExitFullScreenForElement(in Document document, in Element element);
|
| + void webkitDidExitFullScreenForElement(in Document document, in Element element);
|
| +#endif
|
| };
|
| }
|
|
|
|
|