Closed
Bug 26587
Opened 25 years ago
Closed 25 years ago
Image does not appear on page
Categories
(Core Graveyard :: GFX, defect, P3)
Tracking
(Not tracked)
VERIFIED
WORKSFORME
People
(Reporter: emckinney, Assigned: beard)
References
()
Details
Attachments
(1 file)
(deleted),
application/octet-stream
|
Details |
Click the "Making the Earth Move" link. The image of the Earth does not appear.
(Checked vs. IE5 to verify position, correct coding of page.) You can still
right-click the position of the image and select View Image. Earth does appear
in the View Image browser window.
I'm Using M13 on a Gateway P2. T3 connection.
Assignee | ||
Comment 1•25 years ago
|
||
The problem is that in the style class #earth, the z-index is set to -10, which
puts it behind its parent. And since its parent is the background, which has an
opaque image specified, then of course the earth image will be hidden. If I
remove the z-index property, the image shows up. I'd wager that IE5 isn't
properly implementing the z-index property.
There are other problems with the original document, namely not being able to
access "earth" as a top-level variable from within the moveEarth() function, so I
modified it a bit to make it work under Mozilla. I changed it to access the
earth.gif image as "earth = document.images[0]" and got to the div object via
"earthParent = earth.parentNode". Changing style.left and style.top of this
object successfully moves the earth image, but interesting enough, causes it to
float above other things, it doesn't change the effective height of the div.
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → WORKSFORME
Assignee | ||
Comment 2•25 years ago
|
||
Assignee | ||
Comment 3•25 years ago
|
||
The attachment is a .zip file.
Assignee | ||
Comment 4•25 years ago
|
||
CCing vidur for him to look at possible DOM bugs.
Updated•16 years ago
|
Product: Core → Core Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•