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

Side by Side Diff: content/test/data/accessibility/html/meter.html

Issue 833373002: Expose attributes max, min, value for meter html tag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 @MAC-ALLOW:AXRoleDescription=* 3 @MAC-ALLOW:AXRoleDescription=*
4 @MAC-ALLOW:AXMaxValue=*
5 @MAC-ALLOW:AXMinValue=*
6 @MAC-ALLOW:AXValue=*
7 @WIN-ALLOW:currentValue=*
8 @WIN-ALLOW:maximumValue=*
9 @WIN-ALLOW:minimumValue=*
4 --> 10 -->
5 <html> 11 <html>
6 <body> 12 <body>
7 <meter value="2" min="0" max="10">2 out of 10</meter> 13 <meter value="2" min="1" max="10">2 out of 10</meter>
8 </body> 14 </body>
9 </html> 15 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698