blob: b4fde4a0f87874dcd839d5112df6a60362f8e9c2 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../../../resources/js-test.js"></script>
</head>
<body>
<p id="description"></p>
<div id="console"></div>
<script>
description('Tests for writing and reading .type property of HTMLInputElement.');
var input = document.createElement('input');
document.body.appendChild(input);
function check(value, expected)
{
input.type = value;
if (input.type == expected)
testPassed('input.type for "' + value + '" is correctly "' + input.type + '".');
else
testFailed('input.type for "' + value + '" is incorrectly "' + input.type + '", should be "' + expected + '".');
}
check("date", "date");
check("DATE", "date");
check(" date ", "text");
</script>
</body>
</html>