mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
41 lines
1.1 KiB
HTML
41 lines
1.1 KiB
HTML
<HTML><HEAD><TITLE>test</TITLE>
|
|
<SCRIPT>
|
|
function debugOutput (t) {
|
|
document.forms[0].txtdisp.value = t;
|
|
}
|
|
w.document.writeln(t + '<HR>');}
|
|
</SCRIPT>
|
|
</HEAD>
|
|
<BODY>
|
|
|
|
Click on a cell to display cell index (bug causes 1st one to be -1)
|
|
<TABLE>
|
|
<THEAD><TR>
|
|
<TH ONCLICK="debugOutput('TH ' + event.type + ': ' + this.cellIndex);">Name</TH>
|
|
</TR></THEAD>
|
|
|
|
<TBODY><TR>
|
|
<TD ONCLICK="debugOutput('TD ' + event.type + ': ' + this.cellIndex);">Kibo</TD>
|
|
</TR></TBODY>
|
|
</TABLE>
|
|
|
|
<FORM><INPUT TYPE="TEXT" NAME="txtdisp"></FORM>
|
|
|
|
<BR>
|
|
|
|
Click on a cell to display cell index (bug causes 2nd, 4th to be -1)
|
|
<TABLE>
|
|
<TBODY><TR>
|
|
<TD ONCLICK="debugOutput('TD 1 ' + event.type + ': ' + this.cellIndex);">Cell</TD>
|
|
<TH ONCLICK="debugOutput('TH 2 ' + event.type + ': ' + this.cellIndex);">Cell</TH>
|
|
<TD ONCLICK="debugOutput('TD 3 ' + event.type + ': ' + this.cellIndex);">Cell</TD>
|
|
<TH ONCLICK="debugOutput('TH 4 ' + event.type + ': ' + this.cellIndex);">Cell</TH>
|
|
<TD ONCLICK="debugOutput('TD 5 ' + event.type + ': ' + this.cellIndex);">Cell</TD>
|
|
</TR></TBODY>
|
|
</TABLE>
|
|
|
|
<FORM><INPUT TYPE="TEXT" NAME="txtdisp"></FORM>
|
|
|
|
</BODY>
|
|
</HTML>
|