Title: [240692] trunk/Source/WebCore
Revision
240692
Author
[email protected]
Date
2019-01-29 16:43:40 -0800 (Tue, 29 Jan 2019)

Log Message

Try to fix the watchOS build.

* dom/Element.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (240691 => 240692)


--- trunk/Source/WebCore/ChangeLog	2019-01-30 00:37:01 UTC (rev 240691)
+++ trunk/Source/WebCore/ChangeLog	2019-01-30 00:43:40 UTC (rev 240692)
@@ -1,3 +1,9 @@
+2019-01-29  Andy Estes  <[email protected]>
+
+        Try to fix the watchOS build.
+
+        * dom/Element.cpp:
+
 2019-01-29  Simon Fraser  <[email protected]>
 
         REGRESSION(r240553): [iOS] Crash in ScrollingTree::updateTreeFromStateNode when attempting to log in to icloud.com

Modified: trunk/Source/WebCore/dom/Element.cpp (240691 => 240692)


--- trunk/Source/WebCore/dom/Element.cpp	2019-01-30 00:37:01 UTC (rev 240691)
+++ trunk/Source/WebCore/dom/Element.cpp	2019-01-30 00:43:40 UTC (rev 240692)
@@ -3404,11 +3404,13 @@
     return true;
 }
 
+#if ENABLE(FULLSCREEN_API) || ENABLE(POINTER_EVENTS)
 static Element* parentCrossingFrameBoundaries(const Element* element)
 {
     ASSERT(element);
     return element->parentElement() ? element->parentElement() : element->document().ownerElement();
 }
+#endif
 
 #if ENABLE(FULLSCREEN_API)
 void Element::webkitRequestFullscreen()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to