Skip to content

Commit

Permalink
Update UIA aria-readonly mappings (#203)
Browse files Browse the repository at this point in the history
* Fix aria-readonly UIA mappings
* Unconditionally expose readonly in UIA AriaProperties to match docs
  • Loading branch information
sivakusayan authored Oct 31, 2023
1 parent 81c298b commit 5490c20
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7524,7 +7524,9 @@ <h4 id=ariaReadonlyTrue><code>aria-readonly</code>=<code>true</code></h4>
<tr>
<th><abbr title="User Interface Automation">UIA</abbr></th>
<td>
<span class="property">Property: <code>Value.IsReadOnly</code>: <code>true</code></span>
<span class="property">Property: <code>Value.IsReadOnly</code>: <code>true</code>, if the element implements <a href="https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.provider.ivalueprovider"><code>IValueProvider</code></a>.</span><br>
<span class="property">Property: <code>RangeValue.IsReadOnly</code>: <code>true</code>, if the element implements <a href="https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.provider.irangevalueprovider"><code>IRangeValueProvider</code></a>.</span><br>
<span class="property">Property: <code>AriaProperties.readonly</code>: <code>true</code></span>
</td>
</tr>
<tr>
Expand Down Expand Up @@ -7563,7 +7565,9 @@ <h4 id=ariaReadonlyFalse><code>aria-readonly</code>=<code>false</code></h4>
<tr>
<th><abbr title="User Interface Automation">UIA</abbr></th>
<td>
<span class="property">Property: <code>Value.IsReadOnly</code>: <code>false</code></span>
<span class="property">Property: <code>Value.IsReadOnly</code>: <code>false</code>, if the element implements <a href="https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.provider.ivalueprovider"><code>IValueProvider</code></a>.</span><br>
<span class="property">Property: <code>RangeValue.IsReadOnly</code>: <code>false</code>, if the element implements <a href="https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.provider.irangevalueprovider"><code>IRangeValueProvider</code></a>.</span><br>
<span class="property">Property: <code>AriaProperties.readonly</code>: <code>false</code></span>
</td>
</tr>
<tr>
Expand Down

0 comments on commit 5490c20

Please sign in to comment.