Title: [240761] tags/Safari-608.1.3.1/Source/WebCore
Revision
240761
Author
[email protected]
Date
2019-01-30 22:33:32 -0800 (Wed, 30 Jan 2019)

Log Message

Cherry-pick r240596. rdar://problem/47283874

    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: https://svn.webkit.org/repository/webkit/trunk@240596 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: tags/Safari-608.1.3.1/Source/WebCore/ChangeLog (240760 => 240761)


--- tags/Safari-608.1.3.1/Source/WebCore/ChangeLog	2019-01-31 05:04:31 UTC (rev 240760)
+++ tags/Safari-608.1.3.1/Source/WebCore/ChangeLog	2019-01-31 06:33:32 UTC (rev 240761)
@@ -1,3 +1,27 @@
+2019-01-30  Babak Shafiei  <[email protected]>
+
+        Cherry-pick r240596. rdar://problem/47283874
+
+    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: https://svn.webkit.org/repository/webkit/trunk@240596 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2019-01-28  Antoine Quint  <[email protected]>
+
+            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-29  Alan Coon  <[email protected]>
 
         Cherry-pick r240677. rdar://problem/47604080

Modified: tags/Safari-608.1.3.1/Source/WebCore/dom/Element.cpp (240760 => 240761)


--- tags/Safari-608.1.3.1/Source/WebCore/dom/Element.cpp	2019-01-31 05:04:31 UTC (rev 240760)
+++ tags/Safari-608.1.3.1/Source/WebCore/dom/Element.cpp	2019-01-31 06:33:32 UTC (rev 240761)
@@ -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
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to