From 5490c20cfb9632a6631b60fff1996d68d772605f Mon Sep 17 00:00:00 2001 From: Sayan Sivakumaran Date: Tue, 31 Oct 2023 14:00:40 -0500 Subject: [PATCH] Update UIA aria-readonly mappings (#203) * Fix aria-readonly UIA mappings * Unconditionally expose readonly in UIA AriaProperties to match docs --- index.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 1470fdd..f875ddc 100644 --- a/index.html +++ b/index.html @@ -7524,7 +7524,9 @@

aria-readonly=true

UIA - Property: Value.IsReadOnly: true + Property: Value.IsReadOnly: true, if the element implements IValueProvider.
+ Property: RangeValue.IsReadOnly: true, if the element implements IRangeValueProvider.
+ Property: AriaProperties.readonly: true @@ -7563,7 +7565,9 @@

aria-readonly=false

UIA - Property: Value.IsReadOnly: false + Property: Value.IsReadOnly: false, if the element implements IValueProvider.
+ Property: RangeValue.IsReadOnly: false, if the element implements IRangeValueProvider.
+ Property: AriaProperties.readonly: false