Title: [282455] trunk/Source/WebCore
Revision
282455
Author
[email protected]
Date
2021-09-15 07:57:33 -0700 (Wed, 15 Sep 2021)

Log Message

AX: Move platform specific code for isolated tree mode to the platform files
https://bugs.webkit.org/show_bug.cgi?id=230301
<rdar://problem/83138024>

Unreviewed follow up after r282450.

* accessibility/isolatedtree/AXIsolatedObject.cpp:
(WebCore::AXIsolatedObject::initializeAttributeData): Remove PreventKeyboardDOMEventDispatch property set that
I forgot in r282450, since it's now done in initializePlatformProperties().

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (282454 => 282455)


--- trunk/Source/WebCore/ChangeLog	2021-09-15 14:53:35 UTC (rev 282454)
+++ trunk/Source/WebCore/ChangeLog	2021-09-15 14:57:33 UTC (rev 282455)
@@ -1,5 +1,17 @@
 2021-09-15  Carlos Garcia Campos  <[email protected]>
 
+        AX: Move platform specific code for isolated tree mode to the platform files
+        https://bugs.webkit.org/show_bug.cgi?id=230301
+        <rdar://problem/83138024>
+
+        Unreviewed follow up after r282450.
+
+        * accessibility/isolatedtree/AXIsolatedObject.cpp:
+        (WebCore::AXIsolatedObject::initializeAttributeData): Remove PreventKeyboardDOMEventDispatch property set that
+        I forgot in r282450, since it's now done in initializePlatformProperties().
+
+2021-09-15  Carlos Garcia Campos  <[email protected]>
+
         Fix size calculation in ImageBufferCairoImageSurfaceBackend::create()
         https://bugs.webkit.org/show_bug.cgi?id=229365
 

Modified: trunk/Source/WebCore/accessibility/isolatedtree/AXIsolatedObject.cpp (282454 => 282455)


--- trunk/Source/WebCore/accessibility/isolatedtree/AXIsolatedObject.cpp	2021-09-15 14:53:35 UTC (rev 282454)
+++ trunk/Source/WebCore/accessibility/isolatedtree/AXIsolatedObject.cpp	2021-09-15 14:57:33 UTC (rev 282455)
@@ -396,7 +396,6 @@
 
     if (isRoot) {
         setObjectProperty(AXPropertyName::WebArea, object.webAreaObject());
-        setProperty(AXPropertyName::PreventKeyboardDOMEventDispatch, object.preventKeyboardDOMEventDispatch());
         setProperty(AXPropertyName::SessionID, object.sessionID());
         setProperty(AXPropertyName::DocumentURI, object.documentURI().isolatedCopy());
         setProperty(AXPropertyName::DocumentEncoding, object.documentEncoding().isolatedCopy());
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to