Closed
Bug 945229
Opened 11 years ago
Closed 11 years ago
value="add" of a button modified in "value="#ADD"
Categories
(Firefox :: Untriaged, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 939098
People
(Reporter: xaviermd, Unassigned)
Details
Attachments
(1 file)
167 bytes,
text/html
|
Details |
User Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:28.0) Gecko/20100101 Firefox/28.0 (Beta/Release)
Build ID: 20131121073325
Steps to reproduce:
This bug is only in Nightly
Inspecting form elements in a page, button values exposed in inspector are inconsistent when their value is starting with "add"
Actual results:
I searched for a button, served as :
<button value="add_bar">nyah cat</button>
Inspector show me :
<button value="#ADD_bar"></button>
When submitted, the sended value is correct
Expected results:
As in main Firefox, Inspector should have shown :
<button value="add_bar">nyah cat</button>
Reporter | ||
Comment 1•11 years ago
|
||
The problem is strictly in Inspector, the console is correct :
document.getElementsByTagName('button')[0].value
"add_bar"
Comment 2•11 years ago
|
||
Bug 939098 fixes the issue. Please mark this bug as duplicate of 939098.
Yes, fixed.
Status: UNCONFIRMED → RESOLVED
Closed: 11 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•