blob: c224b594de72bc2e3fb261f6c58fd8e2bd40e78e [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<input id="emptyOnFirstVisit">
<form action="../../../resources/back.html" id=form1>
<input type=time id=input1>
<input type=time id=input2>
<input type=time id=input3 value="01: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 = "02:02";
document.getElementById('input3').value = "03:03:03.003";
document.getElementById('form1').submit();
}, 0);
} else {
testRunner.notifyDone();
}
}
window.onload = runTest;
</script>
</body>