[Webkit-unassigned] [Bug 14114] REGRESSION: Link is not clickable (JavaScript error in Jira)

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jun 13 10:33:40 PDT 2007


http://bugs.webkit.org/show_bug.cgi?id=14114





------- Comment #7 from mike.aizatsky at gmail.com  2007-06-13 10:33 PDT -------
David,

I've localized the issue:

it looks like 'node.localName' changed its behavior. I can't be completely sure
but it looks like the only explanation of it working:

in the js code findParentElement in line 100 returns null. It's implemented as:

    var findParentElement = function (element, parentNodeName)
    {
        while((element != null) && (element.localName != null) &&
(element.localName != parentNodeName)) {
            element = element.parentNode
        }
        return element;
    };

and is called with the following parameters:

findParentElement(YAHOO.util.Event.getTarget(event), "A");

It looks like Safari returned upper case letters (which is probably for HTML
afaik), and Safari 3 is (for some reason) returning lower case.

Does it make any sense for you?


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



More information about the webkit-unassigned mailing list