| Index: third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/the-input-element/time-2.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/the-input-element/time-2.html b/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/the-input-element/time-2.html
|
| index cf0d4cbbeaba46daa76e6fb2e1197bba53497dab..0ffec33bf531a55c9b878d2b7e5db7fa69043863 100644
|
| --- a/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/the-input-element/time-2.html
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/html/semantics/forms/the-input-element/time-2.html
|
| @@ -2,8 +2,8 @@
|
| <meta charset=utf-8>
|
| <title>Form input type=time</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#times">
|
| -<link rel=help href="https://html.spec.whatwg.org/multipage/multipage/states-of-the-type-attribute.html#time-state-(type=time)">
|
| +<link rel=help href="https://html.spec.whatwg.org/multipage/#times">
|
| +<link rel=help href="https://html.spec.whatwg.org/multipage/#time-state-(type=time)">
|
| <script src="/resources/testharness.js"></script>
|
| <script src="/resources/testharnessreport.js"></script>
|
| <div id="log"></div>
|
| @@ -23,9 +23,9 @@
|
| {value: "00:60:00.000", expected: "", testname: "Invalid value: minute > 59. Value should be empty"},
|
| {value: "00:00:60.000", expected: "", testname: "Invalid value: second > 59. Value should be empty"},
|
| {value: "12:00:00.001", attributes: { min: "12:00:00.000" }, expected: "12:00:00.001", testname: "Value >= min attribute"},
|
| - {value: "12:00:00.000", attributes: { min: "12:00:00.001" }, expected: "12:00:00.001", testname: "Value < min attribute"},
|
| + {value: "12:00:00.000", attributes: { min: "12:00:00.001" }, expected: "12:00:00.000", testname: "Value < min attribute"},
|
| {value: "12:00:00.000", attributes: { max: "12:00:00.001" }, expected: "12:00:00.000", testname: "Value <= max attribute"},
|
| - {value: "12:00:00.001", attributes: { max: "12:00:00.000" }, expected: "12:00:00.000", testname: "Value > max attribute"}
|
| + {value: "12:00:00.001", attributes: { max: "12:00:00.000" }, expected: "12:00:00.001", testname: "Value > max attribute"}
|
| ];
|
| for (var i = 0; i < times.length; i++) {
|
| var w = times[i];
|
|
|