Nope... In your project's .gwt.xml file add this:
<!-- Avoid memory leaks with IE -->
<replace-with class="com.yourco.gwt.client.NoMemLeaksDOMImplIE8">
<when-type-is class="com.google.gwt.user.client.impl.DOMImpl"/>
<when-property-is name="user.agent" value="ie8"/>
</replace-with>
<replace-with class="com.yourco.gwt.client.NoMemLeaksDOMImplIE6">
<when-type-is class="com.google.gwt.user.client.impl.DOMImpl"/>
<when-property-is name="user.agent" value="ie6"/>
</replace-with>
jay
On Nov 8, 12:46 pm, chrisr <[email protected]> wrote:
> Hi Paul, I'm really interested to see if this works for a project I've
> been working on, which has a significant memory leak in IE.
>
> I haven't worked with deferred bindings in GWT before, and I don't
> think I'm doing it right, as breakpoints i put in my NoLeaksDOMImpl
> class never get hit.
>
> I'm assuming that you aren't supposed to open up the gwt-user jar and
> edit the Emulation.gwt.xml file inside, so I added
>
> com.google.gwt.emul.Emulation.gwt.xml to my source w/
> <module>
> <super-source/>
> <replace-with
> class="com.google.gwt.user.client.impl.NoMemLeaksDOMImplIE6">
> <when-type-is
> class="com.google.gwt.user.client.impl.DOMImplIE6"/>
> </replace-with>
> </module>
>
> And I also added
> com.google.gwt.user.client.impl.NoMemLeaksDOMImpl....java to my
> source..
>
> Am I doing something incorrectly w/ the deferred binding configuration?
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.