| 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 13 matching lines...) Expand all Loading... |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 [ | 26 [ |
| 27 Conditional=VIDEO_TRACK, | 27 Conditional=VIDEO_TRACK, |
| 28 V8EnabledAtRuntime=webkitVideoTrack, | 28 V8EnabledAtRuntime=webkitVideoTrack, |
| 29 JSGenerateToNativeObject, | 29 JSGenerateToNativeObject, |
| 30 Constructor(in double startTime, in double endTime, in DOMString text), | 30 Constructor(in double startTime, in double endTime, in DOMString text), |
| 31 CallWith=ScriptExecutionContext, | 31 CallWith=ScriptExecutionContext, |
| 32 EventTarget, | 32 EventTarget, |
| 33 JSCustomMarkFunction, | 33 JSCustomMarkFunction, |
| 34 JSCustomIsReachable | 34 JSCustomIsReachable, |
| 35 ImplementationLacksVTable |
| 35 ] interface TextTrackCue { | 36 ] interface TextTrackCue { |
| 36 readonly attribute TextTrack track; | 37 readonly attribute TextTrack track; |
| 37 | 38 |
| 38 attribute DOMString id; | 39 attribute DOMString id; |
| 39 attribute double startTime | 40 attribute double startTime |
| 40 setter raises (DOMException); | 41 setter raises (DOMException); |
| 41 attribute double endTime | 42 attribute double endTime |
| 42 setter raises (DOMException); | 43 setter raises (DOMException); |
| 43 attribute boolean pauseOnExit; | 44 attribute boolean pauseOnExit; |
| 44 | 45 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 64 void addEventListener(in DOMString type, | 65 void addEventListener(in DOMString type, |
| 65 in EventListener listener, | 66 in EventListener listener, |
| 66 in [Optional] boolean useCapture); | 67 in [Optional] boolean useCapture); |
| 67 void removeEventListener(in DOMString type, | 68 void removeEventListener(in DOMString type, |
| 68 in EventListener listener, | 69 in EventListener listener, |
| 69 in [Optional] boolean useCapture); | 70 in [Optional] boolean useCapture); |
| 70 boolean dispatchEvent(in Event evt) | 71 boolean dispatchEvent(in Event evt) |
| 71 raises(EventException); | 72 raises(EventException); |
| 72 }; | 73 }; |
| 73 | 74 |
| OLD | NEW |