Changeset 86319 in webkit


Ignore:
Timestamp:
May 12, 2011 12:42:12 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-05-12 ojab <ojab@ojab.ru>

Reviewed by Eric Seidel.

Fix build with --disable-video --enable-fullscreen-api
https://bugs.webkit.org/show_bug.cgi?id=60542

  • css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::SelectorChecker::checkOneSelector):
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r86315 r86319  
     12011-05-12  ojab  <ojab@ojab.ru>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Fix build with --disable-video --enable-fullscreen-api
     6        https://bugs.webkit.org/show_bug.cgi?id=60542
     7
     8        * css/CSSStyleSelector.cpp:
     9        (WebCore::CSSStyleSelector::SelectorChecker::checkOneSelector):
     10
    1112011-05-12  Yuta Kitamura  <yutak@chromium.org>
    212
  • trunk/Source/WebCore/css/CSSStyleSelector.cpp

    r86308 r86319  
    29102910                if (!e->document()->webkitIsFullScreen())
    29112911                    return false;
     2912#if ENABLE(VIDEO)
    29122913                if (!e->document()->webkitCurrentFullScreenElement() || !e->document()->webkitCurrentFullScreenElement()->isMediaElement())
    29132914                    return false;
     2915#endif
    29142916                return true;
    29152917            case CSSSelector::PseudoFullScreenDocument:
Note: See TracChangeset for help on using the changeset viewer.