[Webkit-unassigned] [Bug 85348] New: Regression: Focused TR element draws its focus outline in the wrong place.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue May 1 22:56:16 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=85348

           Summary: Regression: Focused TR element draws its focus outline
                    in the wrong place.
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: New Bugs
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: dmazzoni at google.com


You can demonstrate with this example: the second TR has focus, but the focus outline is drawn around the first row.

​<table>
  <tr>
    <td>First row</td>
  </tr>
  <tr tabIndex=0 id="row2">
    <td>Second row</td>
  </tr>
​</table>
​<script>
  document.getElementById('row2').focus();
​</script>​

You can confirm (by printing document.activeElement) that focus is on the second row, but the outline is drawn in the wrong place.

This is definitely a regression;.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list