blob: fc686dca912c0933b885f9fc832bce19d0375d41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<head>
<script src="../../../resources/js-test.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>
|