mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 09:27:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
129
layout/reftests/bugs/236539-1-ref.html
Normal file
129
layout/reftests/bugs/236539-1-ref.html
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
<html>
|
||||
<head>
|
||||
<script type="text/javascript">
|
||||
var NumLine = 0
|
||||
|
||||
function maj(IDLine)
|
||||
{
|
||||
|
||||
var newtr = document.createElement("tr")
|
||||
newtr.setAttribute("id","tr"+IDLine)
|
||||
|
||||
|
||||
var newtdselect = document.createElement("td")
|
||||
var newselect = document.createElement("select")
|
||||
newselect.setAttribute("id","HypothRank_"+IDLine)
|
||||
newselect.setAttribute("name","HypothRank_"+IDLine)
|
||||
|
||||
for (i=1;i<=IDLine;i++)
|
||||
{
|
||||
|
||||
var newoption = document.createElement("option")
|
||||
newoption.setAttribute("id",i)
|
||||
newoption.setAttribute("class","classoption1")
|
||||
if (i == IDLine)
|
||||
{
|
||||
newoption.setAttribute("selected","selected")
|
||||
}
|
||||
var newtxt = document.createTextNode(i)
|
||||
newoption.appendChild(newtxt)
|
||||
|
||||
newselect.appendChild(newoption)
|
||||
}
|
||||
|
||||
if (i>2)
|
||||
{
|
||||
for (j=1;j<=i-2;j++)
|
||||
{
|
||||
var newoption = document.createElement("option")
|
||||
newoption.setAttribute("class","classoption1")
|
||||
newoption.setAttribute("id",IDLine)
|
||||
var newtxt = document.createTextNode(i-1)
|
||||
newoption.appendChild(newtxt)
|
||||
document.getElementById("HypothRank_"+j).appendChild(newoption)
|
||||
}
|
||||
}
|
||||
|
||||
newtdselect.appendChild(newselect)
|
||||
newtr.appendChild(newtdselect)
|
||||
|
||||
document.getElementById('letbody').appendChild(newtr)
|
||||
|
||||
NumLine++
|
||||
}
|
||||
|
||||
|
||||
|
||||
function DeleteLine(IDLine)
|
||||
{
|
||||
for (i=1;i<=NumLine;i++)
|
||||
|
||||
{
|
||||
if (i != IDLine)
|
||||
{
|
||||
noeud = document.getElementById("HypothRank_"+i)[IDLine-1]
|
||||
document.getElementById("HypothRank_"+i).removeChild(noeud)
|
||||
for (j=0;j<=NumLine-2;j++)
|
||||
{
|
||||
noeud = document.getElementById("HypothRank_"+i)[j]
|
||||
|
||||
k=j+1
|
||||
noeud.setAttribute("id",k)
|
||||
|
||||
if (k == NumLine)
|
||||
{
|
||||
noeud.setAttribute("selected","selected")
|
||||
}
|
||||
depart = 0
|
||||
taille = noeud.firstChild.nodeValue.length
|
||||
document.getElementById("HypothRank_"+i)[j].firstChild.replaceData(depart,taille,j+1)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
noeud = document.getElementById('tr'+IDLine)
|
||||
document.getElementById('letbody').removeChild(noeud)
|
||||
|
||||
NumLine--
|
||||
|
||||
for (i=IDLine;i<=NumLine;i++)
|
||||
{
|
||||
k=i+1
|
||||
noeud = document.getElementById("tr"+k)
|
||||
noeud.setAttribute("id","tr"+i)
|
||||
|
||||
noeud = document.getElementById("HypothRank_"+k)
|
||||
noeud.setAttribute("id","HypothRank_"+i)
|
||||
noeud.setAttribute("name","HypothRank_"+i)
|
||||
|
||||
noeud = document.getElementById("Hypoth_"+k)
|
||||
noeud.setAttribute("name","Hypoth_"+i)
|
||||
noeud.setAttribute("id","Hypoth_"+i)
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<form>
|
||||
<table border="1" id="latable">
|
||||
<thead></thead>
|
||||
<tfoot></tfoot>
|
||||
<tbody id="letbody"></tbody>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<script>
|
||||
document.body.offsetWidth;
|
||||
maj(NumLine+1);
|
||||
document.body.offsetWidth;
|
||||
maj(NumLine+1);
|
||||
document.body.offsetWidth;
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue