[Webkit-unassigned] [Bug 52102] New: a:focus inconsistant with IE/FF

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Jan 7 21:33:04 PST 2011


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

           Summary: a:focus inconsistant with IE/FF
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
        OS/Version: All
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: CSS
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: priyajeet.hora at gmail.com


Please try the code below in webkit, IE (greater than 7) and FF.
Clicking the anchor should reveal the text by applying the :focus psuedo class to the span.
However it doesn't in Safari and chrome.

<!doctype html>
<html>
<head>
<style>
    a span {
        display: none;
    }

    a:focus span {
        display: block;
    }
</style>
</head>
<body>
    <a href="#">Click me to reveal - <span>some stuff</span></a>
</body>
</html>

Downstream bug
http://code.google.com/p/chromium/issues/detail?id=42157

-- 
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