Closed
Bug 96505
Opened 25 years ago
Closed 25 years ago
Image that uses "%" in height attribute value does not display if it's a child of LI element
Categories
(Core :: Layout, defect)
Core
Layout
Tracking
()
People
(Reporter: TucsonTester1, Assigned: attinasi)
Details
Attachments
(1 file)
|
590 bytes,
text/html
|
Details |
Insertion of Image
When inserting an image(s), if you want to add multiple images which the size
has been changed to %'s, then make these images to a list, the images will
disappear. This will only happen if the size has been changed by % of page, if
you just change the size by pixels or use the default size of the image it will
not happen.
Steps to recreate:
1. Open a new composer document
2. Click on the image icon, or click on insert and choose image
3. Select an image
4. When the image props screen is up choose "custom size"
5. Choose the width and height, then next to those change from pixels to % of
window
6. Click on 'OK'
7. Click cursor in front (on left side) of image
8. Click the icon for "numbered list" or "bulleted list" on toolbar
**image will disappear**
NOTE: The only difference of the HTML between the image that was customized in
pixels (which works fine) and the image which was customized in % (which
disappears) is just the way that the sizing is written:
CUSTOMIZED PIXEL SIZE WITH # LIST (WORKS):
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<body>
<ol>
<li><img src="file:///C:/Documents%20and%20Settings/qatester/Desktop/AFC-
002.JPG" alt="9" width="500" height="375">
</li>
</ol>
</body>
</html>
CUSTOMIZED % SIZE WITH # LIST (DOESNT WORK):
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<body>
<ol>
<li><img src="file:///C:/Documents%20and%20Settings/qatester/Desktop/AFC-
002.JPG" alt="9" width="25%" height="18%">
</li>
</ol>
</body>
</html>
Comment 1•25 years ago
|
||
i was able to recreate the same scenario on win98, after the insertion of an
image, and changing Dimensions on image from pixels to %window and the image
would vanish from the editor
Comment 2•25 years ago
|
||
Charley--is this a duplicate bug?
confirm based on above comments
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 4•25 years ago
|
||
I don't have a bug on this issue, which occurs only when the "height" param is
uses "%". It is a layout/render bug -- the html source looks fine.
Assignee: cmanske → attinasi
Component: Editor → Layout
QA Contact: sujay → petersen
Summary: Image changed by % and creating numbered lists erases image → Image that uses "%" in height attribute value does not display if it's a child of LI element
Comment 5•25 years ago
|
||
| Assignee | ||
Comment 6•25 years ago
|
||
This is fixed by my fix for bug 85016 - marking as a dup.
*** This bug has been marked as a duplicate of 85016 ***
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•