From 7d7d63feb7913ea6a273e941c594d3f4722c54cf Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Tue, 9 Nov 2010 15:46:54 +0000 Subject: [PATCH] fixes #5261, default header now contains X-UA-Compatible = chrome1 to use chrome frame when installed on IE svn changeset:15942/svn branch:6.5 --- .../terminal/gwt/server/AbstractApplicationServlet.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/com/vaadin/terminal/gwt/server/AbstractApplicationServlet.java b/src/com/vaadin/terminal/gwt/server/AbstractApplicationServlet.java index df946dd820..5b422b226d 100644 --- a/src/com/vaadin/terminal/gwt/server/AbstractApplicationServlet.java +++ b/src/com/vaadin/terminal/gwt/server/AbstractApplicationServlet.java @@ -1908,8 +1908,9 @@ public abstract class AbstractApplicationServlet extends HttpServlet implements String title, String themeUri) throws IOException { page.write("\n"); - // Force IE9 into IE8 mode. Remove when IE 9 mode works (#5546) - page.write("\n"); + // Force IE9 into IE8 mode. Remove when IE 9 mode works (#5546), chrome + // frame if available #5261 + page.write("\n"); page.write(""); -- 2.39.5