Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 partial interface Element { | |
| 6 // Mozilla version | |
| 7 const unsigned short ALLOW_KEYBOARD_INPUT = 1; | |
| 8 [LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullScreen] void webkitRequestFullScreen([Default=Undefined] optional unsigned short flags); | |
| 9 | |
| 10 // W3C version | |
| 11 [LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullscreen] void webkitRequestFullscreen(); | |
| 12 | |
| 13 attribute EventHandler onwebkitfullscreenchange; | |
| 14 attribute EventHandler onwebkitfullscreenerror; | |
|
falken
2014/08/08 02:28:18
Just to make sure I understand, these EventHandler
philipj_slow
2014/08/08 05:40:48
Precisely, these were on Element.idl and I moved t
| |
| 15 }; | |
| OLD | NEW |