[Webkit-unassigned] [Bug 91749] New: [FullscreenApi] Allow timestamps in the playback timeline for media elements smaller than 190px if elements is in fullscreen any media size

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jul 19 08:55:36 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=91749

           Summary: [FullscreenApi] Allow timestamps in the playback
                    timeline for media elements smaller than 190px if
                    elements is in fullscreen any media size
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Keywords: Blackberry
          Severity: Normal
          Priority: P2
         Component: Media Elements
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: tonikitoo at webkit.org


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);

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list