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

Side by Side Diff: content/test/data/accessibility/aom/aom-readonly.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:AXValue=*
3 @BLINK-ALLOW:canSetValue*
4 -->
5 <html>
6 <body>
7 <input id="readonlyfalse" tabindex="0" value="Editable text">
8 <input id="readonlytrue" tabindex="1" value="Uneditable text">
9 <script>
10 document.getElementById("readonlyfalse").accessibleNode.readOnly = false;
11 document.getElementById("readonlytrue").accessibleNode.readOnly = true;
12 </script>
13 </body>
14 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698