Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1168)

Side by Side Diff: content/test/data/accessibility/aom/aom-disabled.html

Issue 2796223003: Boolean attributes for Accessibility Object Model Phase 1 (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!--
2 @MAC-ALLOW:AXEnabled*
3 @WIN-ALLOW:UNAVAILABLE*
4 @BLINK-ALLOW:disabled
5 -->
6 <!DOCTYPE HTML>
7 <html>
8 <body>
9 <input id="disabledtrue" type="text">
10 <input id="disabledfalse" type="text">
11 <script>
12 document.getElementById("disabledtrue").accessibleNode.disabled = true;
13 document.getElementById("disabledfalse").accessibleNode.disabled = false;
14 </script>
15 </body>
16 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698