http://bugs.winehq.org/show_bug.cgi?id=16228
Summary: Cannot get a script function from within a comment node. Product: Wine Version: 1.1.9 Platform: Other OS/Version: other Status: NEW Severity: normal Priority: P2 Component: mshtml AssignedTo: wine-bugs@winehq.org ReportedBy: leslie_alistair@hotmail.com
Created an attachment (id=17474) --> (http://bugs.winehq.org/attachment.cgi?id=17474) Test case
<html> <head> <title></title> </head> <script id="sc" type="text/javascript"> <!-- function Testing() { } // --> </script> <body onload="Testing()"> </body> </html>
With the above html code, we cannot call the function "Testing" directly from code.
Test case provided.