Closed
Bug 212788
Opened 22 years ago
Closed 22 years ago
[quirks] image disappears due to quirky percentage resizing
Categories
(Core :: Layout: Block and Inline, defect)
Core
Layout: Block and Inline
Tracking
()
RESOLVED
DUPLICATE
of bug 166630
People
(Reporter: mporta, Unassigned)
References
()
Details
(Whiteboard: [reflow-refactor])
Attachments
(1 file)
|
848 bytes,
text/html
|
Details |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030624
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030624
when you load the page there is a list of screenshots: click on one of them and
a window opens. it should show a bigger screenshot, however it doesn't.
using internet explorer i can see the screenshots.
Reproducible: Always
Steps to Reproduce:
1. load the page
2. click on a screenshot image
3.
Actual Results:
no big screenshot is shown
Expected Results:
show the chosen screenshot.
Comment 1•22 years ago
|
||
The page uses IE-specific javascript (using document.all) to show the images.
Over to evangelism.
Assignee: general → english-us
Status: UNCONFIRMED → NEW
Component: Browser-General → English US
Ever confirmed: true
Product: Browser → Tech Evangelism
QA Contact: general → english-us
Version: Trunk → unspecified
Comment 2•22 years ago
|
||
confirming using build 2003071508 on Linux.
Opera 7.11 on Linux displays the picture.
This is because </table> is closed before </center> whereas <table> was opened
before <center> is opened.
OS: Windows 2000 → All
Hardware: PC → All
Comment 3•22 years ago
|
||
Opera also supports document.all, mind you.
Comment 4•22 years ago
|
||
Boris, I'm not sure I understand, there may be two separate issues here, the
file I uploaded is basically the picture viewer code, which closes tags in
revert order (table and center), which prevent Mozilla from displaying the
image. I mentioned Opera just to make sure it wasn't a site issue. The site
itself probably use document.all anyway. :)
Comment 5•22 years ago
|
||
OK, so the document.all issue is in fact separate. The real issue is the
following markup:
<table><tr><td>
<center>
<iframe height="83%">
</center>
</td></tr></table>
Per spec, the height of that iframe should be "auto". We're doing some sort of
weird stuff with it -- removing the table makes things happier, as does putting
us into standards mode.
So this is a quirks-only bug with our attempts at broken backwards-compatible
percent sizing.
Assignee: english-us → block-and-inline
Component: English US → Layout: Block & Inline
Product: Tech Evangelism → Browser
QA Contact: english-us → ian
Summary: missing image in html page → [quirsks] missing image in html page
Version: unspecified → Trunk
Whiteboard: [reflow-refactor]
Updated•22 years ago
|
Summary: [quirsks] missing image in html page → [quirks] image disappears due to quirky percentage resizing
Comment 6•22 years ago
|
||
*** This bug has been marked as a duplicate of 166630 ***
Status: NEW → RESOLVED
Closed: 22 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•