Open
Bug 897091
Opened 13 years ago
Updated 2 years ago
Links don't open in a special page
Categories
(Core :: DOM: HTML Parser, defect, P5)
Tracking
()
NEW
People
(Reporter: arolopez, Unassigned)
Details
Attachments
(2 files, 1 obsolete file)
User Agent: Mozilla/5.0 (Windows NT 5.1; rv:22.0) Gecko/20100101 Firefox/22.0 (Beta/Release)
Build ID: 20130618035212
Steps to reproduce:
i access to the site:
http://www.enargas.gov.ar/SICGNC/TiposConsulta/C_Dominio.php
after i introduce a car patent and get the list of operations from that car. For example: introducing "AAE123"
Actual results:
When i click on the link of that patent nothing happen.
Expected results:
When i click on the link of that patent it should display a new tab with details of that operation.
This website is not public. How can we test? Could you provide login info?
Flags: needinfo?(arolopez)
this website is public to get the page where the problem is fallow this steps:
1) www.enargas.gov.ar
2) Click in link "Gas Natural Comprimido"
3) Click in link "Consultas al SIC" (it open a new tab)
4) Click in link "Consultas"
5) Click in link "Operaciones PEC"
6) Click in link "Dominio"
7) Write in the inputbox "Dominio del Vehiculo" the text "aae123" and click Button "ingresar datos"
8) It will show you a list of operations that this car have got.
9) if you click the link of any of this operations nothing happen and it should open a new tab with the operation's details.
Flags: needinfo?(arolopez)
That smells the website designed only for IE.
I tried with the old version Firefox 8, same issue, so clearly not a recent issue. Maybe the website is bad coded.
Any idea Alice?
Comment 4•13 years ago
|
||
The behevior of innerHTML is different between Firefox and IE/Chrome.
document.getElementById("DetallePrevio").innerHTML =
'<table>\
<tbody>\
<tr>\
<form method="post" action="#detail-clicked" target="_blank">\
<td width="20" align="center">\
<input name="Imagen" src="https://bugzilla.mozilla.org/skins/standard/index/help.png" type="image">\
</td>\
</form>\
</tr>\
</tbody>\
</table>';
Nightly25.0a1:
<p id="DetallePrevio">
<table>
<tbody>
<tr>
<form target="_blank" action="#detail-clicked" method="post">
</form>
<td width="20" align="center">
<input type="image" src="https://bugzilla.mozilla.org/skins/standard/index/help.png" name="Imagen" />
</td>
</tr>
</tbody>
</table>
</p>
IE9/ComodoDragon28:
<P id=DetallePrevio>
<TABLE>
<TBODY>
<TR>
<FORM method=post action=#detail-clicked target=_blank>
<TD width=20 align=center>
<INPUT name=Imagen src="https://bugzilla.mozilla.org/skins/standard/index/help.png" type=image>
</TD>
</FORM>
</TR>
</TBODY>
</TABLE>
</P>
Updated•13 years ago
|
Component: Untriaged → HTML: Parser
Product: Firefox → Core
Comment 5•13 years ago
|
||
Opera 12.16 also behave same as Firefox.
So,
gecko/presto VS trident/blink
Updated•13 years ago
|
Attachment #780369 -
Attachment description: testcase → testcase using innerHTML
Comment 6•13 years ago
|
||
Updated•13 years ago
|
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 7•5 years ago
|
||
Bulk-downgrade of unassigned, >=3 years untouched DOM/Storage bug's priority.
If you have reason to believe this is wrong, please write a comment and ni :jstutte.
Severity: normal → S4
Priority: -- → P5
Updated•2 years ago
|
Attachment #9386699 -
Attachment is obsolete: true
You need to log in
before you can comment on or make changes to this bug.
Description
•