RESOLVED FIXED 105052
Allow the text track contents to be displayed externally to WebCore.
https://bugs.webkit.org/show_bug.cgi?id=105052
Summary Allow the text track contents to be displayed externally to WebCore.
Jer Noble
Reported 2012-12-14 12:54:20 PST
Allow the text track contents to be displayed externally to WebCore.
Attachments
Patch (26.65 KB, patch)
2012-12-14 13:11 PST, Jer Noble
no flags
Patch (26.68 KB, patch)
2012-12-14 13:22 PST, Jer Noble
no flags
Patch (26.69 KB, patch)
2012-12-14 13:37 PST, Jer Noble
eric.carlson: review+
Jer Noble
Comment 1 2012-12-14 13:11:43 PST
Jer Noble
Comment 2 2012-12-14 13:22:58 PST
Created attachment 179525 [details] Patch Rebaselined.
Jer Noble
Comment 3 2012-12-14 13:37:01 PST
Created attachment 179528 [details] Patch Use nullptr instead of 0 when clearing an OwnPtr (fixes Chromium build error).
Eric Carlson
Comment 4 2012-12-14 13:40:58 PST
Comment on attachment 179528 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=179528&action=review > Source/WebCore/html/shadow/MediaControlElements.cpp:1290 > hasChildNodes() ? show() : hide(); > + > + if (hasChildNodes()) { You might as well combine these (only call hasChildNodes once). > Source/WebCore/platform/graphics/MediaPlayerPrivate.h:188 > + virtual bool requiresTextTrackRepresentation() const { return 0; } Nit: "return 0" -> "return false"
Jer Noble
Comment 5 2012-12-14 15:25:05 PST
Note You need to log in before you can comment on or make changes to this bug.