Closed
Bug 262690
Opened 21 years ago
Closed 21 years ago
The width property on the <INPUT> tag does not seem to be noticed by the browser
Categories
(Firefox :: General, defect)
Tracking
()
VERIFIED
INVALID
People
(Reporter: coulterdavid, Assigned: bugzilla)
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20040913 Firefox/0.10
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20040913 Firefox/0.10
There are not a lot of details. you can reproduce the problem with the code in
the steps to reproduce.
Reproducible: Always
Steps to Reproduce:
1. Put the following code in a file and open the file with Foxfire.
<HTML>
Test 1 WIDTH='50'<INPUT ID='Text' TYPE='Text' Value='Testing' WIDTH='50' /><br>
Test 2 WIDTH='500'<INPUT ID='Text2' TYPE='Text' Value='Testing2' WIDTH='500' /><br>
Test 3 WIDTH='50px'<INPUT ID='Text3' TYPE='Text' Value='Testing3' WIDTH='50px'
/><br>
Test 4 WIDTH='500px'<INPUT ID='Text4' TYPE='Text' Value='Testing4' WIDTH='500px'
/><br>
Test 5 WIDTH='50%'<INPUT ID='Text5' TYPE='Text' Value='Testing5' WIDTH='50%' /><br>
Test 6 WIDTH='75%'<INPUT ID='Text6' TYPE='Text' Value='Testing6' WIDTH='75%' />
</HTML>
Actual Results:
All of the textboxes are the same width despite the different widths in the
width property of the <INPUT> tag.
Expected Results:
different width text boxes.
No crash
Comment 1•21 years ago
|
||
use CSS
Test 1 WIDTH='50'<INPUT ID='Text' TYPE='Text' Value='Testing' style="width:50px">
->INVA
btw, even IE does not understand your width='number'
Status: UNCONFIRMED → RESOLVED
Closed: 21 years ago
Resolution: --- → INVALID
Comment 2•21 years ago
|
||
There are no such things as width properties in INPUT tags.
V.
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•