[Webkit-unassigned] [Bug 38829] New: The HTML5 video element in Safari does not respect "visibility:hidden" CSS property

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun May 9 19:04:48 PDT 2010


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

           Summary: The HTML5 video element in Safari does not respect
                    "visibility:hidden" CSS property
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Macintosh Intel
        OS/Version: Mac OS X 10.6
            Status: UNCONFIRMED
          Severity: Minor
          Priority: P2
         Component: Media Elements
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: silviapfeiffer1 at gmail.com


Created an attachment (id=55517)
 --> (https://bugs.webkit.org/attachment.cgi?id=55517)
safari bug with visibility:hidden on <video> element

Just created a Web page example like this:

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>visibility bug</title>
    <style type="text/css">
    video {
      visibility: hidden;
    }
    </style>
  </head>
  <body>
    <p>A paragraph before the video element.</p>
    <video controls>
        <source src="HelloWorld.mp4" type="video/mp4">
        <source src="HelloWorld.ogv" type="video/ogg">
    </video>
    <p>A paragraph after the video element.</p>
  </body>
</html>

Safari displays the first frame of the video even though the video has been set to hidden (see attached screen shot). All other browsers including Google Chrome make the video element invisible.

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