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

Unified Diff: content/test/data/accessibility/html/input-types.html

Issue 738733005: Input type "number" is not exposed in Acc layer Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebasing 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/input-types.html
diff --git a/content/test/data/accessibility/html/input-types.html b/content/test/data/accessibility/html/input-types.html
index b45cc25fa66e8c19abdaba62b0f1077a10559c5d..4986768fa2a3c30b9e90e6450114bb9f2e1030d7 100644
--- a/content/test/data/accessibility/html/input-types.html
+++ b/content/test/data/accessibility/html/input-types.html
@@ -1,13 +1,17 @@
-<!doctype html>
<!--
+@MAC-ALLOW:AXRole*
@WIN-ALLOW:text-input-type*
-->
+<!DOCTYPE html>
<html>
<body>
<label>Default: <input></label>
<label>Button: <input type="button"></label>
<label>Checkbox: <input type="checkbox"></label>
<label>Color: <input type="color"></label>
+ <label>Date: <input type="date"></label>
+ <label>DateTime: <input type="datetime"></label>
+ <label>DateTime-local: <input type="datetime-local"></label>
<label>Email: <input type="email"></label>
<label>File: <input type="file"></label>
<label>Image: <input type="image"></label>
@@ -20,6 +24,8 @@
<label>Submit: <input type="submit"></label>
<label>Tel: <input type="tel"></label>
<label>Text: <input type="text"></label>
+ <label>Time: <input type="time"></label>
<label>Url: <input type="url"></label>
+ <label>Week: <input type="week"></label>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698