Title: [240596] trunk/Source/WebCore
Revision
240596
Author
grao...@webkit.org
Date
2019-01-28 11:58:19 -0800 (Mon, 28 Jan 2019)

Log 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):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (240595 => 240596)


--- trunk/Source/WebCore/ChangeLog	2019-01-28 19:54:48 UTC (rev 240595)
+++ trunk/Source/WebCore/ChangeLog	2019-01-28 19:58:19 UTC (rev 240596)
@@ -1,3 +1,13 @@
+2019-01-28  Antoine Quint  <grao...@apple.com>
+
+        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):
+
 2019-01-28  Eric Carlson  <eric.carl...@apple.com>
 
         AVStreamSession isn't always available, make a HAVE compile flag for it

Modified: trunk/Source/WebCore/dom/Element.cpp (240595 => 240596)


--- trunk/Source/WebCore/dom/Element.cpp	2019-01-28 19:54:48 UTC (rev 240595)
+++ trunk/Source/WebCore/dom/Element.cpp	2019-01-28 19:58:19 UTC (rev 240596)
@@ -3403,6 +3403,12 @@
     return true;
 }
 
+static Element* parentCrossingFrameBoundaries(const Element* element)
+{
+    ASSERT(element);
+    return element->parentElement() ? element->parentElement() : element->document().ownerElement();
+}
+
 #if ENABLE(FULLSCREEN_API)
 void Element::webkitRequestFullscreen()
 {
@@ -3420,12 +3426,6 @@
     invalidateStyleAndLayerComposition();
 }
 
-static Element* parentCrossingFrameBoundaries(const Element* element)
-{
-    ASSERT(element);
-    return element->parentElement() ? element->parentElement() : element->document().ownerElement();
-}
-
 void Element::setContainsFullScreenElementOnAncestorsCrossingFrameBoundaries(bool flag)
 {
     Element* element = this;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to