[Bug 11301] New: documentElement.ownerDocument.createElement fails

wine-bugs at winehq.org wine-bugs at winehq.org
Mon Jan 21 14:50:12 CST 2008


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 at winehq.org
        ReportedBy: winehq.5.tahtu at 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".


-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.



More information about the wine-bugs mailing list