Changeset 201212 in webkit
- Timestamp:
- May 19, 2016, 11:35:24 PM (9 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r201205 r201212 1 2016-05-19 Tim Horton <timothy_horton@apple.com> 2 3 REGRESSION (r200638): -[DOMHTMLVideoElement play] disappeared from ObjC bindings 4 https://bugs.webkit.org/show_bug.cgi?id=157940 5 <rdar://problem/26385907> 6 7 Reviewed by Dan Bernstein. 8 9 * html/HTMLMediaElement.idl: 10 Drop the return value of play from the ObjC bindings, because the bindings 11 generator doesn't seem to know what to do with a Promise. 12 1 13 2016-05-19 Chris Dumez <cdumez@apple.com> 2 14 -
trunk/Source/WebCore/html/HTMLMediaElement.idl
r200638 r201212 76 76 [Reflect] attribute boolean autoplay; 77 77 [Reflect] attribute boolean loop; 78 #if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C 78 79 Promise play(); 80 #else 81 void play(); 82 #endif 79 83 void pause(); 80 84 void fastSeek(unrestricted double time);
Note:
See TracChangeset
for help on using the changeset viewer.