Title: [244046] trunk/Source/WebCore
Revision
244046
Author
timo...@apple.com
Date
2019-04-08 14:31:52 -0700 (Mon, 08 Apr 2019)

Log Message

Unreviewed build fix for iOSMac after r243893.
https://bugs.webkit.org/show_bug.cgi?id=196707

* dom/Element.cpp:
(WebCore::parentCrossingFrameBoundaries): Remove ENABLE(POINTER_EVENTS) since computedTouchActions()
no longer uses parentCrossingFrameBoundaries().

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (244045 => 244046)


--- trunk/Source/WebCore/ChangeLog	2019-04-08 21:29:16 UTC (rev 244045)
+++ trunk/Source/WebCore/ChangeLog	2019-04-08 21:31:52 UTC (rev 244046)
@@ -1,3 +1,12 @@
+2019-04-08  Timothy Hatcher  <timo...@apple.com>
+
+        Unreviewed build fix for iOSMac after r243893.
+        https://bugs.webkit.org/show_bug.cgi?id=196707
+
+        * dom/Element.cpp:
+        (WebCore::parentCrossingFrameBoundaries): Remove ENABLE(POINTER_EVENTS) since computedTouchActions()
+        no longer uses parentCrossingFrameBoundaries().
+
 2019-04-08  Youenn Fablet  <you...@apple.com>
 
         Lazily construct Navigator serviceWorker

Modified: trunk/Source/WebCore/dom/Element.cpp (244045 => 244046)


--- trunk/Source/WebCore/dom/Element.cpp	2019-04-08 21:29:16 UTC (rev 244045)
+++ trunk/Source/WebCore/dom/Element.cpp	2019-04-08 21:31:52 UTC (rev 244046)
@@ -3434,7 +3434,7 @@
     return true;
 }
 
-#if ENABLE(FULLSCREEN_API) || ENABLE(POINTER_EVENTS)
+#if ENABLE(FULLSCREEN_API)
 static Element* parentCrossingFrameBoundaries(const Element* element)
 {
     ASSERT(element);
@@ -3442,9 +3442,7 @@
         return parent;
     return element->document().ownerElement();
 }
-#endif
 
-#if ENABLE(FULLSCREEN_API)
 void Element::webkitRequestFullscreen()
 {
     document().requestFullScreenForElement(this, Document::EnforceIFrameAllowFullScreenRequirement);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to