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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: content/test/data/accessibility/html/meter.html
diff --git a/content/test/data/accessibility/html/meter.html b/content/test/data/accessibility/html/meter.html
index a28aa1664c9a8ad9052fcbacd8bb7960229ec60f..ac076d770adf1d811044c402ce642a66f58fa2b1 100644
--- a/content/test/data/accessibility/html/meter.html
+++ b/content/test/data/accessibility/html/meter.html
@@ -1,9 +1,15 @@
<!DOCTYPE html>
<!--
@MAC-ALLOW:AXRoleDescription=*
+@MAC-ALLOW:AXMaxValue=*
+@MAC-ALLOW:AXMinValue=*
+@MAC-ALLOW:AXValue=*
+@WIN-ALLOW:currentValue=*
+@WIN-ALLOW:maximumValue=*
+@WIN-ALLOW:minimumValue=*
-->
<html>
<body>
-<meter value="2" min="0" max="10">2 out of 10</meter>
+<meter value="2" min="1" max="10">2 out of 10</meter>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698