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

Side by Side Diff: content/test/data/accessibility/aom/aom-atomic.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 <!DOCTYPE html>
2 <!--
3 @MAC-ALLOW:AXARIAAtomic=*
4 @WIN-ALLOW:atomic:*
5 @WIN-ALLOW:container-atomic:*
6 @BLINK-ALLOW:liveAtomic=true
7 -->
8 <html>
9 <body>
10 <p id="atomicfalse" role="log" aria-live="polite" tabindex="0"> This test is f or atomic="false" </p>
11 <p id="atomictrue" role="log" aria-live="polite" tabindex="1"> This test is fo r atomic="true" </p>
12
13 <!-- Roles of "alert" and "status" have implicit aria-atomic of true. -->
14 <p id="alert" role="alert" tabindex="2">This test is for alert.</p>
15 <p id="status" role="status" tabindex="3">This test is for status.</p>
16
17 <script>
18 document.getElementById("atomicfalse").accessibleNode.atomic = false;
19 document.getElementById("atomictrue").accessibleNode.atomic = true;
20 </script>
21
22 </body>
23 </html>
OLDNEW
« no previous file with comments | « content/shell/test_runner/web_ax_object_proxy.cc ('k') | content/test/data/accessibility/aom/aom-atomic-expected-android.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698