| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 module html { | 26 module html { |
| 27 | 27 |
| 28 interface [ | 28 interface [ |
| 29 Conditional=VIDEO_TRACK, | 29 Conditional=VIDEO_TRACK, |
| 30 V8EnabledAtRuntime=webkitVideoTrack, | 30 V8EnabledAtRuntime=webkitVideoTrack, |
| 31 JSGenerateToNativeObject, | 31 JSGenerateToNativeObject, |
| 32 Constructor(in DOMString id, in double startTime, in double endTime, in
DOMString text, in [Optional=DefaultIsUndefined] DOMString settings, in [Optiona
l=DefaultIsUndefined] boolean pauseOnExit), | 32 Constructor(in double startTime, in double endTime, in DOMString text), |
| 33 CallWith=ScriptExecutionContext, | 33 CallWith=ScriptExecutionContext, |
| 34 EventTarget, | 34 EventTarget, |
| 35 JSCustomMarkFunction, | 35 JSCustomMarkFunction, |
| 36 JSCustomIsReachable | 36 JSCustomIsReachable |
| 37 ] TextTrackCue { | 37 ] TextTrackCue { |
| 38 readonly attribute TextTrack track; | 38 readonly attribute TextTrack track; |
| 39 | 39 |
| 40 attribute DOMString id; | 40 attribute DOMString id; |
| 41 attribute double startTime; | 41 attribute double startTime; |
| 42 attribute double endTime; | 42 attribute double endTime; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 65 in EventListener listener, | 65 in EventListener listener, |
| 66 in [Optional] boolean useCapture); | 66 in [Optional] boolean useCapture); |
| 67 void removeEventListener(in DOMString type, | 67 void removeEventListener(in DOMString type, |
| 68 in EventListener listener, | 68 in EventListener listener, |
| 69 in [Optional] boolean useCapture); | 69 in [Optional] boolean useCapture); |
| 70 boolean dispatchEvent(in Event evt) | 70 boolean dispatchEvent(in Event evt) |
| 71 raises(EventException); | 71 raises(EventException); |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 } | 74 } |
| OLD | NEW |