Open
Bug 529243
Opened 16 years ago
Updated 3 years ago
Arrow down on table header should move to the next row
Categories
(Core :: General, defect)
Tracking
()
UNCONFIRMED
People
(Reporter: fredck, Unassigned)
Details
Attachments
(1 file)
|
735 bytes,
text/html
|
Details |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 (.NET CLR 3.5.30729)
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 (.NET CLR 3.5.30729)
in an editable document (designMode 'on'), when hitting ARROW-DOWN inside a table header <th>, the caret should move to the next row in the table. It's actually moving out of the table.
Reproducible: Always
Steps to Reproduce:
1. In an editable document, load the following HTML:
---
<table border="1" cellpadding="1" cellspacing="1" style="width: 200px;">
<thead>
<tr>
<th scope="col">
Put cursor here ><</th>
<th scope="col">
Header 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
</tr>
</tbody>
</table>
<p> </p>
---
2. Place the caret inside the first cell. It's a <th> element into a <thead>.
3. Hit ARROW-DOWN.
Actual Results:
The caret moves to the paragraph after the table.
Expected Results:
The caret should move to the second row of the table, right bellow the previous header cell.
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•