Usage of gwt-fx with not mozilla based browsers

<p>Assuming we want to move a specified element from point A to point B, where A and B are absolute positions relative to aparent -element described within a linked css-style sheet;</p><p>(e.g. elementStatA{position:absolute;top:0;left:0}</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; elementStatB{position:absolute;top:10;left:10}</p><p>&nbsp;NmorphStyle will accept the two selector-names as parameters and interpolate the values so that a smooth transition can be displayed; however the whole undertaking will fail (without notification what so ever) if the browser of choice is ie8 (or less), and the html is rendered in strict mode.</p><p>&nbsp;</p>
1 answer

HTML quirks mode while useing gwt-fx

In order to solve this, one has to change the type from strict to quirks mode.(e.g. use<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01 Transitional//EN"> instead of <!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0 Strict//EN""http://www.w3.org/TR/ahtml1-strict.dtd">While the effect will render fine make sure to check for side-effects.

Taggings: