Changeset 112020 in webkit


Ignore:
Timestamp:
Mar 24, 2012 8:59:40 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

Quick fix for rendering controls regression.
https://bugs.webkit.org/show_bug.cgi?id=82125

Patch by Victor Carbune <vcarbune@adobe.com> on 2012-03-24
Reviewed by Eric Carlson.

Only temporary fix. Tests to cover the problem should be added

  • html/shadow/MediaControlElements.cpp:

(WebCore::MediaControlPanelElement::makeOpaque): The display:none
property should be toggled only by the media element now.
(WebCore::MediaControlPanelElement::makeTransparent): The timer
that toggles the dispalay:none shouldn't be used now.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r112016 r112020  
     12012-03-24  Victor Carbune  <vcarbune@adobe.com>
     2
     3        Quick fix for rendering controls regression.
     4        https://bugs.webkit.org/show_bug.cgi?id=82125
     5
     6        Reviewed by Eric Carlson.
     7
     8        Only temporary fix. Tests to cover the problem should be added
     9
     10        * html/shadow/MediaControlElements.cpp:
     11        (WebCore::MediaControlPanelElement::makeOpaque): The display:none
     12        property should be toggled only by the media element now.
     13        (WebCore::MediaControlPanelElement::makeTransparent): The timer
     14        that toggles the dispalay:none shouldn't be used now.
     15
    1162012-03-24  Kevin Ollivier  <kevino@theolliviers.com>
    217
  • trunk/Source/WebCore/html/shadow/MediaControlElements.cpp

    r111041 r112020  
    243243    m_opaque = true;
    244244
    245     show();
     245    // FIXME(BUG 79347): The display:none property should be toggled below only
     246    // when display logic is introduced.
     247    // show();
    246248}
    247249
     
    257259    m_opaque = false;
    258260
    259     startTimer();
     261    // FIXME(BUG 79347): The display:none property should be toggled below
     262    // (through the timer start) when display logic is introduced.
     263    // startTimer();
    260264}
    261265
Note: See TracChangeset for help on using the changeset viewer.