Gwt not starting in IE and Chrome on the local file system

The Gwt application is client-only and does not use server-side functionality. The application will be launched from the user's local file system. The created application runs only in FireFox and does not work in IE and Chrome. Can anyone tell what is the reason?

+3
source share
2 answers

GWT by default loads your compiled code into an iframe, and different files in the file system have different "sources", so frames cannot communicate with each other (they fall into the same source policy). This is a safety measure.

xs (2.1) xsiframe, <script>. gwt.xml:

<add-linker name="xsiframe" />
+3

IS Chrome?

GWT JavaScript . , FF?

+1

All Articles