| Index: core/dom/ElementFullscreen.idl
|
| diff --git a/core/dom/ElementFullscreen.idl b/core/dom/ElementFullscreen.idl
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6f45402fe28d7bc2b0ec57f02ede0407b387580c
|
| --- /dev/null
|
| +++ b/core/dom/ElementFullscreen.idl
|
| @@ -0,0 +1,17 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +partial interface Element {
|
| + [RuntimeEnabled=FullscreenUnprefixed] void requestFullscreen();
|
| +
|
| + // Mozilla version
|
| + const unsigned short ALLOW_KEYBOARD_INPUT = 1;
|
| + [LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullScreen] void webkitRequestFullScreen([Default=Undefined] optional unsigned short flags);
|
| +
|
| + // W3C version
|
| + [LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullscreen] void webkitRequestFullscreen();
|
| +
|
| + attribute EventHandler onwebkitfullscreenchange;
|
| + attribute EventHandler onwebkitfullscreenerror;
|
| +};
|
|
|