OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 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 // http://w3c.github.io/presentation-api/#availablechangeevent | |
6 | |
7 [ | |
8 Constructor(DOMString type, optional AvailableChangeEventInit eventInitDict) , | |
9 RuntimeEnabled=Presentation | |
10 ] | |
Peter Beverloo
2015/01/07 14:29:08
nit: "] interface" on the same line.
whywhat
2015/01/07 16:22:16
Done.
| |
11 interface AvailableChangeEvent : Event { | |
12 readonly attribute boolean available; | |
Peter Beverloo
2015/01/07 14:29:08
nit: indent.
whywhat
2015/01/07 16:22:15
Done.
| |
13 }; | |
OLD | NEW |