http://bugs.winehq.org/show_bug.cgi?id=11301
Summary: documentElement.ownerDocument.createElement fails Product: Wine Version: 0.9.53. Platform: Other OS/Version: other Status: UNCONFIRMED Severity: enhancement Priority: P2 Component: msxml3 AssignedTo: wine-bugs@winehq.org ReportedBy: winehq.5.tahtu@spamgourmet.com
I'm a Delphi 7.0 developer, trying to get my application to run unter Wine.
var FXMLDocument: IXMLDOMDocument; begin FXMLDocument := CreateComObject(CLASS_DOMDocument30) as IXMLDOMDocument2; MessageBoxW(0, '1', 'GetXML', MB_OK);
FXMLDocument.appendChild(FXMLDocument.createProcessingInstruction('xml', 'version="1.0" encoding="utf-8"')); MessageBoxW(0, '2', 'GetXML', MB_OK);
FXMLDocument.appendChild(FXMLDocument.createElement('desktop')); MessageBoxW(0, '3', 'GetXML', MB_OK);
FXMLDocument.createElement('Hallo'); MessageBoxW(0, '4', 'GetXML', MB_OK);
FXMLDocument.documentElement.ownerDocument.createElement('Hallo2'); MessageBoxW(0, '5', 'GetXML', MB_OK);
After running this code under Wine 9.0.53 on Ubuntu 7.10 I see popup message boxes with "1", "2", "3" and "4" - but I never see the message "5".