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

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@240596 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog
index 4b1e07a..dad7450a 100644
--- a/Source/WebCore/ChangeLog
+++ b/Source/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2019-01-28  Antoine Quint  <graouts@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.carlson@apple.com>
 
         AVStreamSession isn't always available, make a HAVE compile flag for it
diff --git a/Source/WebCore/dom/Element.cpp b/Source/WebCore/dom/Element.cpp
index ca4bc99..1664585 100644
--- a/Source/WebCore/dom/Element.cpp
+++ b/Source/WebCore/dom/Element.cpp
@@ -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;