- From: David Bolter <david.bolter@utoronto.ca>
- Date: Thu, 09 Apr 2009 12:52:54 -0400
- To: Tarun Sharma <taruns@talentica.com>
- CC: www-dom@w3.org
Hi Tarun,
Does your code look like this?
/**
* To get an ISimpleDOMNode, ISimpleDOMDocument, ISimpleDOMText
* or any IAccessible2 interface on should use IServiceProvider like
this:
*
-----------------------------------------------------------------------
* ISimpleDOMDocument *pAccDoc = NULL;
* IServiceProvider *pServProv = NULL;
* pAcc->QueryInterface(IID_IServiceProvider, (void**)&pServProv);
* if (pServProv) {
* const GUID unused;
* pServProv->QueryService(unused, IID_ISimpleDOMDocument,
(void**)&pAccDoc);
* pServProv->Release();
* }
*/
(From FF source)
cheers,
David
On 4/9/09 12:39 AM, Tarun Sharma wrote:
> Hi,
>
>
>
> In my C++ MFC Based application I was reading the Dom for Firefox 3.0.2 by
> using ISimpleDOMDocument and ISimpleDOMNode interfaces.
>
> But these interfaces doesn't work for FF 3.0.8. Can anyone tell me what has
> changed and now how can I read the Dom.
>
>
>
>
>
> Tarun Sharma.
>
>
>
>
>
Received on Thursday, 9 April 2009 16:53:41 UTC