blob: f302654e402d4b2b7b630b9d0276398ff3d3c93d [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("month", "month");
check("MONTH", "month");
check(" month ", "text");
</script>
</body>
</html>