blob: 0a111abde75a40330eb537b6ce0d4db1517494b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<html>
<head>
<head>
<script src="../../../resources/js-test.js"></script>
<script>
jsTestIsAsync = true;
function test()
{
inputElement = document.getElementById("inputElement");
shouldBe('inputElement.width', '50');
shouldBe('inputElement.height', '50');
finishJSTest();
}
</script>
</head>
<body onload="test()">
<input id="inputElement" type="image" width="50" height="50" style="display:none">
</body>
</html>
|