Index: LayoutTests/imported/web-platform-tests/html/semantics/forms/the-input-element/datetime-local.html |
diff --git a/LayoutTests/imported/web-platform-tests/html/semantics/forms/the-input-element/datetime-local.html b/LayoutTests/imported/web-platform-tests/html/semantics/forms/the-input-element/datetime-local.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1abbd4aa5b4b4fa28d0e219ff08a4fa1ed026a4d |
--- /dev/null |
+++ b/LayoutTests/imported/web-platform-tests/html/semantics/forms/the-input-element/datetime-local.html |
@@ -0,0 +1,36 @@ |
+<!DOCTYPE html> |
+<meta charset=utf-8> |
+<title>Form input type=datetime-local</title> |
+<link rel="author" title="Denis Ah-Kang" href="mailto:denis@w3.org"> |
+<link rel=help href="https://html.spec.whatwg.org/multipage/multipage/common-microsyntaxes.html#local-dates-and-times"> |
+<link rel=help href="https://html.spec.whatwg.org/multipage/multipage/states-of-the-type-attribute.html#local-date-and-time-state-(type=datetime-local)"> |
+<script src="../../../../../../resources/testharness.js"></script> |
+<script src="../../../../../../resources/testharnessreport.js"></script> |
+<div id="log"></div> |
+<script> |
+ var datetimeLocal = [ |
+ {value: "", expected: "", testname: "empty value"}, |
+ {value: "2014-01-01T11:11:11.111", expected: "2014-01-01T11:11:11.111", testname: "datetime-local input value set to 2014-01-01T11:11:11.111 without min/max"}, |
+ {value: "2014-01-01 11:11:11.111", expected: "2014-01-01T11:11:11.111", testname: "datetime-local input value set to 2014-01-01 11:11:11.111 without min/max"}, |
+ {value: "2014-01-01 11:11", expected: "2014-01-01T11:11", testname: "datetime-local input value set to 2014-01-01 11:11 without min/max"}, |
+ {value: "2014-01-01 00:00:00.000", expected: "2014-01-01T00:00", testname: "datetime-local input value set to 2014-01-01 00:00:00.000 without min/max"}, |
+ {value: "2014-01-0 11:11", expected: "", testname: "datetime-local input value set to 2014-01-0 11:11 without min/max"}, |
+ {value: "2014-01-01 11:1", expected: "", testname: "datetime-local input value set to 2014-01-01 11:1 without min/max"}, |
+ {value: "2014-01-01 11:12", attributes: { min: "2014-01-01 11:11" }, expected: "2014-01-01T11:12", testname: "Value >= min attribute"}, |
+ {value: "2014-01-01 11:10", attributes: { min: "2014-01-01 11:11" }, expected: "2014-01-01T11:11", testname: "Value < min attribute"}, |
+ {value: "2014-01-01 11:10", attributes: { max: "2014-01-01 11:11" }, expected: "2014-01-01T11:10", testname: "Value <= max attribute"}, |
+ {value: "2014-01-01 11:12", attributes: { max: "2014-01-01 11:11" }, expected: "2014-01-01T11:11", testname: "Value > max attribute"} |
+ ]; |
+ for (var i = 0; i < datetimeLocal.length; i++) { |
+ var w = datetimeLocal[i]; |
+ test(function() { |
+ var input = document.createElement("input"); |
+ input.type = "datetime-local"; |
+ input.value = w.value; |
+ for(var attr in w.attributes) { |
+ input[attr] = w.attributes[attr]; |
+ } |
+ assert_equals(input.value, w.expected); |
+ }, w.testname); |
+ } |
+</script> |