Bug 91749 - [FullscreenApi] Allow timestamps in the playback timeline for media elements smaller than 190px if elements is in fullscreen any media size
Summary: [FullscreenApi] Allow timestamps in the playback timeline for media elements ...
Status: RESOLVED WONTFIX
Alias: None
Product: WebKit
Classification: Unclassified
Component: Media (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Antonio Gomes
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-07-19 08:55 PDT by Antonio Gomes
Modified: 2023-10-12 17:51 PDT (History)
4 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Antonio Gomes 2012-07-19 08:55:35 PDT
1101 // We want the timeline slider to be at least 100 pixels wide.
1102 // FIXME: Eliminate hard-coded widths altogether.
1103 static const int minWidthToDisplayTimeDisplays = 45 + 100 + 45;
1104 
1105 void RenderMediaControlTimeDisplay::layout()
1106 {
1107     RenderDeprecatedFlexibleBox::layout();
1108     RenderBox* timelineContainerBox = parentBox();
1109     while (timelineContainerBox && timelineContainerBox->isAnonymous())
1110         timelineContainerBox = timelineContainerBox->parentBox();
1111 
1117     if (timelineContainerBox && timelineContainerBox->width() < minWidthToDisplayTimeDisplays)
1118         setWidth(0);
Comment 1 Ahmad Saleem 2023-10-12 17:51:44 PDT
I am unable to find following FIXME and also FIXME.

Unfortunately, I am also not able to find when this file was deleted.

@Eric, @Jer - any input? I am marking this as 'RESOLVED WONTFIX' but if you can share any input, it would be great.