blob: 1b1b86ca115fc7cf6c247efb924cc2fadf81a5c6 [file] [log] [blame]
<head>
<script src="../js/resources/js-test-pre.js"></script>
</head>
<body>
<div id="console"></div>
<script>
var el = document.createElement("input");
el.setAttribute("type", "checkbox");
shouldBe('el.value', '"on"');
shouldBe('el.setAttribute("value", "foo"); el.value', '"foo"');
shouldBe('el.checked = true; el.value', '"foo"');
shouldBe('el.removeAttribute("value"); el.value', '"on"');
shouldBe('el.value = "foo"; el.getAttribute("value")', '"foo"');
</script>
</body>