Changeset 240596 in webkit


Ignore:
Timestamp:
Jan 28, 2019 11:58:19 AM (5 years ago)
Author:
graouts@webkit.org
Message:

Limit user-agent interactions based on the touch-action property on iOS
https://bugs.webkit.org/show_bug.cgi?id=193447

Unreviewed build fix.

  • dom/Element.cpp:

(WebCore::parentCrossingFrameBoundaries):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r240592 r240596  
     12019-01-28  Antoine Quint  <graouts@apple.com>
     2
     3        Limit user-agent interactions based on the touch-action property on iOS
     4        https://bugs.webkit.org/show_bug.cgi?id=193447
     5
     6        Unreviewed build fix.
     7
     8        * dom/Element.cpp:
     9        (WebCore::parentCrossingFrameBoundaries):
     10
    1112019-01-28  Eric Carlson  <eric.carlson@apple.com>
    212
  • trunk/Source/WebCore/dom/Element.cpp

    r240579 r240596  
    34043404}
    34053405
     3406static Element* parentCrossingFrameBoundaries(const Element* element)
     3407{
     3408    ASSERT(element);
     3409    return element->parentElement() ? element->parentElement() : element->document().ownerElement();
     3410}
     3411
    34063412#if ENABLE(FULLSCREEN_API)
    34073413void Element::webkitRequestFullscreen()
     
    34193425    ensureElementRareData().setContainsFullScreenElement(flag);
    34203426    invalidateStyleAndLayerComposition();
    3421 }
    3422 
    3423 static Element* parentCrossingFrameBoundaries(const Element* element)
    3424 {
    3425     ASSERT(element);
    3426     return element->parentElement() ? element->parentElement() : element->document().ownerElement();
    34273427}
    34283428
Note: See TracChangeset for help on using the changeset viewer.