Changeset 90797 in webkit


Ignore:
Timestamp:
Jul 11, 2011 5:30:54 PM (13 years ago)
Author:
jer.noble@apple.com
Message:

HTML5 video controller in fullscreen is partly off-screen (at least on youtube) using ClickToFlash
https://bugs.webkit.org/show_bug.cgi?id=64327

Reviewed by Darin Adler.

No new tests; no change in functionality, so covered by existing tests.

Make the rules from fullscreenQuickTime.css !important so they are not overridden
by page authors.

  • css/fullscreenQuickTime.css:

(video:-webkit-full-screen::-webkit-media-controls-panel):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r90791 r90797  
     12011-07-11  Jer Noble  <jer.noble@apple.com>
     2
     3        HTML5 video controller in fullscreen is partly off-screen (at least on youtube) using ClickToFlash
     4        https://bugs.webkit.org/show_bug.cgi?id=64327
     5
     6        Reviewed by Darin Adler.
     7
     8        No new tests; no change in functionality, so covered by existing tests.
     9
     10        Make the rules from fullscreenQuickTime.css !important so they are not overridden
     11        by page authors.
     12
     13        * css/fullscreenQuickTime.css:
     14        (video:-webkit-full-screen::-webkit-media-controls-panel):
     15
    1162011-07-11  Levi Weintraub  <leviw@chromium.org>
    217
  • trunk/Source/WebCore/css/fullscreenQuickTime.css

    r88948 r90797  
    2626
    2727video:-webkit-full-screen::-webkit-media-controls-panel {
    28     -webkit-box-align: start;
    29     -webkit-box-pack: end;   
    30     -webkit-appearance: none;
     28    -webkit-box-align: start !important;
     29    -webkit-box-pack: end !important;
     30    -webkit-appearance: none !important;
    3131
    32     bottom: 50px;
    33     left: 50%;
    34     margin-left: -220px;
    35     padding: 12px 0 0 10px;
    36     width: 430px;
    37     height: 48px;
     32    bottom: 50px !important;
     33    left: 50% !important;
     34    margin-left: -220px !important;
     35    padding: 12px 0 0 10px !important;
     36    width: 430px !important;
     37    height: 48px !important;
    3838   
    3939    background-image: -webkit-gradient(
     
    4747        color-stop(0.366, rgba(12, 12, 12, .97)),
    4848        color-stop(1, rgba(19, 19, 19, .97))
    49     );
     49    ) !important;
    5050
    5151    -webkit-box-shadow:
     
    5454        inset 0 -1px 0 0px   rgba(202, 202, 202, 0.09),
    5555        0  0   0 1px rgba(0, 0, 0, 0.5);
    56     -webkit-border-radius: 8px;
     56    -webkit-border-radius: 8px !important;
    5757
    58     -webkit-transition: opacity 0.3s linear;
     58    -webkit-transition: opacity 0.3s linear !important;
    5959}
    6060
Note: See TracChangeset for help on using the changeset viewer.