blob: 7915f40943137baa4932a0772f7b8f0baf6117b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<html>
<head>
<script src="../../../resources/js-test.js"></script>
<script>
jsTestIsAsync = true;
</script>
</head>
<body>
<input type="image" id="imageSlow" src="../resources/image-slow.pl" style="display:none">
<div id="console"></div>
<script language="JavaScript">
var e = document.getElementById("imageSlow");
shouldBe('e.width', '0');
shouldBe('e.height', '0');
finishJSTest();
</script>
</body>
</html>
|