Re: [webkit-dev] JavaScriptCore Binding Problem

2011-01-07 Thread Alex Milowski
On Wed, Jan 5, 2011 at 7:38 PM, Alex Milowski a...@milowski.org wrote: I've got a new IDL class I'm working of for some experiments in XML and I've run into an interesting snag.  I have a call to a parse method from Javascript where the string argument seems to be getting mangled.  The IDL for

Re: [webkit-dev] JavaScriptCore Binding Problem

2011-01-07 Thread Alex Milowski
Completely embarrassing ... but it is an XHTML file and so the markup in the string gets parsed unless I escape it ... *sigh* Too many hours wasted in the debugger on this one. :( So, it is a non-issue. Thanks to Evan Martin for pointed that out. -- --Alex Milowski The excellence of grammar

[webkit-dev] JavaScriptCore Binding Problem

2011-01-05 Thread Alex Milowski
I've got a new IDL class I'm working of for some experiments in XML and I've run into an interesting snag. I have a call to a parse method from Javascript where the string argument seems to be getting mangled. The IDL for the method looks like: boolean parse(in DOMString str); and the