blob: 8d0d4213d1b7699617809df042e66b8dfbb785dd [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<input id="emptyOnFirstVisit">
<form action="../../../resources/back.html" id=form1>
<input type="datetime-local" id=input1>
<input type="datetime-local" id=input2>
<input type="datetime-local" id=input3 value="2001-01-01T01:01:01.001">
</form>
<script>
// Restoring the form should update the clear button visibility.
testRunner.waitUntilDone();
function runTest()
{
var state = document.getElementById('emptyOnFirstVisit');
if (!state.value) {
// First visit.
setTimeout(function() {
state.value = 'visited';
document.getElementById('input2').value = "2002-02-02T02:02";
document.getElementById('input3').value = "2003-03-03T03:03:03.003";
document.getElementById('form1').submit();
}, 0);
} else {
testRunner.notifyDone();
}
}
window.onload = runTest;
</script>
</body>