| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <body> | 3 <body> |
| 4 <input id="emptyOnFirstVisit"> | 4 <input id="emptyOnFirstVisit"> |
| 5 <form action="data:text/html,<script>history.back()</script>" id=form1> | 5 <form action="../../../resources/back.html" id=form1> |
| 6 <input type="datetime-local" id=input1> | 6 <input type="datetime-local" id=input1> |
| 7 <input type="datetime-local" id=input2> | 7 <input type="datetime-local" id=input2> |
| 8 <input type="datetime-local" id=input3 value="2001-01-01T01:01:01.001"> | 8 <input type="datetime-local" id=input3 value="2001-01-01T01:01:01.001"> |
| 9 </form> | 9 </form> |
| 10 | 10 |
| 11 <script> | 11 <script> |
| 12 // Restoring the form should update the clear button visibility. | 12 // Restoring the form should update the clear button visibility. |
| 13 testRunner.waitUntilDone(); | 13 testRunner.waitUntilDone(); |
| 14 function runTest() | 14 function runTest() |
| 15 { | 15 { |
| 16 var state = document.getElementById('emptyOnFirstVisit'); | 16 var state = document.getElementById('emptyOnFirstVisit'); |
| 17 if (!state.value) { | 17 if (!state.value) { |
| 18 // First visit. | 18 // First visit. |
| 19 setTimeout(function() { | 19 setTimeout(function() { |
| 20 state.value = 'visited'; | 20 state.value = 'visited'; |
| 21 document.getElementById('input2').value = "2002-02-02T02:02"; | 21 document.getElementById('input2').value = "2002-02-02T02:02"; |
| 22 document.getElementById('input3').value = "2003-03-03T03:03:03.003"; | 22 document.getElementById('input3').value = "2003-03-03T03:03:03.003"; |
| 23 document.getElementById('form1').submit(); | 23 document.getElementById('form1').submit(); |
| 24 }, 0); | 24 }, 0); |
| 25 } else { | 25 } else { |
| 26 testRunner.notifyDone(); | 26 testRunner.notifyDone(); |
| 27 } | 27 } |
| 28 } | 28 } |
| 29 | 29 |
| 30 window.onload = runTest; | 30 window.onload = runTest; |
| 31 </script> | 31 </script> |
| 32 </body> | 32 </body> |
| OLD | NEW |