Title: [240294] trunk/Source/WebKit
Revision
240294
Author
bb...@apple.com
Date
2019-01-22 13:45:07 -0800 (Tue, 22 Jan 2019)

Log Message

Automation.computeElementLayout should return visual viewport-aware coordinates
https://bugs.webkit.org/show_bug.cgi?id=193598
<rdar://problem/35325644>

Unreviewed, restore a mistakenly-deleted line whose absence causes hangs.

* Shared/CoordinateSystem.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (240293 => 240294)


--- trunk/Source/WebKit/ChangeLog	2019-01-22 21:34:34 UTC (rev 240293)
+++ trunk/Source/WebKit/ChangeLog	2019-01-22 21:45:07 UTC (rev 240294)
@@ -1,3 +1,13 @@
+2019-01-22  Brian Burg  <bb...@apple.com>
+
+        Automation.computeElementLayout should return visual viewport-aware coordinates
+        https://bugs.webkit.org/show_bug.cgi?id=193598
+        <rdar://problem/35325644>
+
+        Unreviewed, restore a mistakenly-deleted line whose absence causes hangs.
+
+        * Shared/CoordinateSystem.h:
+
 2019-01-22  Alex Christensen  <achristen...@webkit.org>
 
         Move NetworkStorageSession ownership to NetworkProcess

Modified: trunk/Source/WebKit/Shared/CoordinateSystem.h (240293 => 240294)


--- trunk/Source/WebKit/Shared/CoordinateSystem.h	2019-01-22 21:34:34 UTC (rev 240293)
+++ trunk/Source/WebKit/Shared/CoordinateSystem.h	2019-01-22 21:45:07 UTC (rev 240294)
@@ -41,7 +41,8 @@
 template<> struct EnumTraits<WebKit::CoordinateSystem> {
     using values = EnumValues<
     WebKit::CoordinateSystem,
-    WebKit::CoordinateSystem::Page
+    WebKit::CoordinateSystem::Page,
+    WebKit::CoordinateSystem::LayoutViewport
     >;
 };
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to