]> source.dussan.org Git - vaadin-framework.git/commitdiff
fixes #5261, default header now contains X-UA-Compatible = chrome1 to use chrome...
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Tue, 9 Nov 2010 15:46:54 +0000 (15:46 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Tue, 9 Nov 2010 15:46:54 +0000 (15:46 +0000)
svn changeset:15942/svn branch:6.5

src/com/vaadin/terminal/gwt/server/AbstractApplicationServlet.java

index df946dd8209979b8bbbf0914e774d7d20146b6b0..5b422b226da38832a60eb0436cb3a67643467cf7 100644 (file)
@@ -1908,8 +1908,9 @@ public abstract class AbstractApplicationServlet extends HttpServlet implements
             String title, String themeUri) throws IOException {
         page.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>\n");
 
-        // Force IE9 into IE8 mode. Remove when IE 9 mode works (#5546)
-        page.write("<meta http-equiv=\"X-UA-Compatible\" content=\"IE=8\"/>\n");
+        // Force IE9 into IE8 mode. Remove when IE 9 mode works (#5546), chrome
+        // frame if available #5261
+        page.write("<meta http-equiv=\"X-UA-Compatible\" content=\"IE=8,chrome=1\"/>\n");
 
         page.write("<style type=\"text/css\">"
                 + "html, body {height:100%;margin:0;}</style>");