Thomas は正確に正しく、これは GWT 2.5 で正しかった GWT 2.4 のバグです。
まだ GWT 2.4 を使用している場合、最新の chrome ビルドで発生した多くの問題は、次の会話で解決できます。
https://groups.google.com/forum/#!topic/google-web-toolkit/UBWsvHYM4SE
FTA: 回避策の概要は、以下を .gwt.xml ファイルに追加することです。
<!-- TEMP FIX UNTIL GOING TO GWT 2.5 -->
<!-- Fallback implementation, based on a timer -->
<replace-with class="com.google.gwt.animation.client.AnimationSchedulerImplTimer">
<when-type-is class="com.google.gwt.animation.client.AnimationScheduler"/>
<any>
<when-property-is name="user.agent" value="ie6"/>
<when-property-is name="user.agent" value="ie8"/>
<when-property-is name="user.agent" value="ie9"/>
<when-property-is name="user.agent" value="safari"/>
<when-property-is name="user.agent" value="opera"/>
</any>
</replace-with>
<!-- Implementation based on mozRequestAnimationFrame -->
<replace-with class="com.google.gwt.animation.client.AnimationSchedulerImplMozilla">
<when-type-is class="com.google.gwt.animation.client.AnimationScheduler"/>
<when-property-is name="user.agent" value="gecko1_8"/>
</replace-with>
<!-- ************* END ************* -->