Problem with GWT hosted mode when doing Ctrl+F5 in Chrome : CSS don't render anymore
I have a weird p开发者_JS百科roblem on my GWT app in hosted mode. I did a "CTRL+F5" on my web page and since then, my app css didn't render anymore. Now, I have an ugly app with nothing more than labels and no styling elements even though I have verified that all resources (css, images and so on) are present.
Even weird fact, the app renders normally on Internet Explorer (never thought I would put IE and normally in the same sentence :D) but it's not working on Chrome and Firefox.
Has anybody already experienced this in dev mode ? It's getting me crazy ... please help ...
thanks in advance
"Ugly" page means that your css does not load anymore. IE possibly caches them so page still renders properly.
Use developer console on Chrome or firebug on Firefox to inspect loading of resources.
Chrome: right-click on any element -> Inspect Element -> select Network tab -> reload page
精彩评论