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

Side by Side Diff: content/test/data/accessibility/aria/aria-separator.html

Issue 2890723003: Slider events with valuetext (Closed)
Patch Set: Fix test Created 3 years, 7 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
1 <!-- 1 <!--
2 @MAC-ALLOW:AXRole* 2 @MAC-ALLOW:AXRole*
3 @WIN-ALLOW:xml-roles:* 3 @WIN-ALLOW:xml-roles:*
4 @WIN-ALLOW:currentValue*
4 --> 5 -->
5 <!DOCTYPE html> 6 <!DOCTYPE html>
6 <html> 7 <html>
7 <body> 8 <body>
8 Before 9 Before
9 <div role="separator">This is ARIA separator.</div> 10 <div role="separator" aria-valuemin="1" aria-valuenow="1" aria-valuemax="3">ARIA separator. No value when unfocusable.</div>
11 <div role="separator" tabindex="-1" aria-valuemin="1" aria-valuenow="1" aria-val uemax="3">ARIA separator. Can have a value when focusable.</div>
10 After 12 After
11 </body> 13 </body>
12 </html> 14 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698