blob: 406d4c647fbb37e8fbabe6a822387083fa0914b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<!DOCTYPE html>
<html>
<body>
<input id="emptyOnFirstVisit">
<form action="data:text/html,<script>history.back()</script>" id=form1>
<input type=date id=input1>
<input type=date id=input2>
<input type=date id=input3 value="2012-01-03">
</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 = "2001-02-03";
document.getElementById('input3').value = "2002-03-04";
document.getElementById('form1').submit();
}, 0);
} else {
testRunner.notifyDone();
}
}
window.onload = runTest;
</script>
</body>
|