http://bugs.winehq.org/show_bug.cgi?id=59539 Bug ID: 59539 Summary: Querying namespace nodes via XPath's namespace:: axis returns NULL for all nodes. selectSingleNode("namespace::prefix") returns S_FALSE/NULL and selectNodes("namespace::*") returns an empty list, even when the namespace is in scope. Product: Wine Version: 11.3 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: msxml3 Assignee: wine-bugs@list.winehq.org Reporter: hkarlsson@gmail.com Distribution: --- When building chrome through wine it fails on some commands involving javascript. I've narrowed it down to a super simple tiny repro which works fine on windows but fails on wine. Here's the error on wine: 0128:err:msxml:create_node Called for unsupported node type 18 FAIL: node is null Create a test.js file that has this content: var doc = new ActiveXObject("Msxml2.DOMDocument.6.0"); doc.loadXML('<root xmlns:ns="http://example.com/ns"/>'); var node = doc.documentElement.selectSingleNode("namespace::ns"); WScript.Echo(node == null ? "FAIL: node is null" : "PASS: " + node.nodeName + "=" + node.nodeValue); Then run it with cscript.exe. On windows it returns: PASS: xmlns:ns=http://example.com/ns on wine it returns: FAIL: node is null -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.