[Webkit-unassigned] [Bug 14836] New: XPathEvaluator.evaluate does not find results from createElementNS on Windows

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jul 31 14:34:59 PDT 2007


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

           Summary: XPathEvaluator.evaluate does not find results from
                    createElementNS on Windows
           Product: WebKit
           Version: 522+ (nightly)
          Platform: Macintosh
        OS/Version: Windows XP
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: XML DOM
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: jcostell at tibco.com


The following yeilds "<record/>" on Mac but "" on Windows on the latest nighly:

var x = (new DOMParser()).parseFromString('<data><record jsxid="5"/></data>',
'text/xml');
var n = x.createElementNS(null, "record");
x.firstChild.firstChild.appendChild(n);
var e = new XPathEvaluator();
var n = e.evaluate("//record[@jsxid='5']/record", x.documentElement, null,
null, null).iterateNext();
(new XMLSerializer()).serializeToString(n);


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