Skip to content

Commit 5490c20

Browse files
authored
Update UIA aria-readonly mappings (#203)
* Fix aria-readonly UIA mappings * Unconditionally expose readonly in UIA AriaProperties to match docs
1 parent 81c298b commit 5490c20

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

index.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7524,7 +7524,9 @@ <h4 id=ariaReadonlyTrue><code>aria-readonly</code>=<code>true</code></h4>
75247524
<tr>
75257525
<th><abbr title="User Interface Automation">UIA</abbr></th>
75267526
<td>
7527-
<span class="property">Property: <code>Value.IsReadOnly</code>: <code>true</code></span>
7527+
<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>
7528+
<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>
7529+
<span class="property">Property: <code>AriaProperties.readonly</code>: <code>true</code></span>
75287530
</td>
75297531
</tr>
75307532
<tr>
@@ -7563,7 +7565,9 @@ <h4 id=ariaReadonlyFalse><code>aria-readonly</code>=<code>false</code></h4>
75637565
<tr>
75647566
<th><abbr title="User Interface Automation">UIA</abbr></th>
75657567
<td>
7566-
<span class="property">Property: <code>Value.IsReadOnly</code>: <code>false</code></span>
7568+
<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>
7569+
<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>
7570+
<span class="property">Property: <code>AriaProperties.readonly</code>: <code>false</code></span>
75677571
</td>
75687572
</tr>
75697573
<tr>

0 commit comments

Comments
 (0)