OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 partial interface Element { | 5 partial interface Element { |
| 6 [RuntimeEnabled=FullscreenUnprefixed] void requestFullscreen(); |
| 7 |
6 // Mozilla version | 8 // Mozilla version |
7 const unsigned short ALLOW_KEYBOARD_INPUT = 1; | 9 const unsigned short ALLOW_KEYBOARD_INPUT = 1; |
8 [LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullScreen] void
webkitRequestFullScreen([Default=Undefined] optional unsigned short flags); | 10 [LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullScreen] void
webkitRequestFullScreen([Default=Undefined] optional unsigned short flags); |
9 | 11 |
10 // W3C version | 12 // W3C version |
11 [LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullscreen] void
webkitRequestFullscreen(); | 13 [LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullscreen] void
webkitRequestFullscreen(); |
12 | 14 |
13 attribute EventHandler onwebkitfullscreenchange; | 15 attribute EventHandler onwebkitfullscreenchange; |
14 attribute EventHandler onwebkitfullscreenerror; | 16 attribute EventHandler onwebkitfullscreenerror; |
15 }; | 17 }; |
OLD | NEW |