2009-07-28 13:02:03 PDT
Another follow up. I've been looking at doing something like this:
IDOMElement iEl = webView.mainFrame().DOMDocument().createElement("script");
iEl.setAttribute("type", "text/javascript");
IDOMText tCon = webView.mainFrame().DOMDocument().createTextNode(jsToExec);
iEl.appendChild(tCon);
webView.mainFrame().DOMDocument().appendChild(iEl);
but I'm getting "not implemented" errors. Thought maybe that would be a route.