Closed
Bug 48895
Opened 26 years ago
Closed 26 years ago
Object Image.complete property always false.
Categories
(Core :: DOM: Core & HTML, defect, P3)
Tracking
()
People
(Reporter: nhorgan, Assigned: jst)
Details
Attachments
(1 file)
|
1.69 KB,
text/html
|
Details |
The image.complete property is always false. The code below describes the
problem. (Note the image.complete property does work for images in the document
object.)
<html>
<head>
<title>Image complete</title>
</head>
<SCRIPT LANGUAGE="JavaScript">
var a = new Image()
a.src = "<some image name here>"
function test() {
alert(a.complete)
//always false
}
</SCRIPT>
<body onLoad="test()">
</body>
</html>
Comment 1•26 years ago
|
||
Status: UNCONFIRMED → RESOLVED
Closed: 26 years ago
Resolution: --- → DUPLICATE
Comment 2•26 years ago
|
||
Updated•7 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•