Alona Kaplan has uploaded a new change for review.
Change subject: webadmin: support IE10
......................................................................
webadmin: support IE10
Running an application in IE9 does not necessarily mean you are running IE9
standards mode. IE9 has many modes that can be defined in the page head
tag ("Document Mode").
GWT IE permutations work best with each version of "standards" mode.
Mixing modes, say browser mode = 7 and document mode = 9, is not
recommended and the behavior is undefined.
Gwt's recommendation is "try to keep browser modes and document modes
the same. If you must use mixed mode, be aware that you may run into
issues that are still not supported.
The exception is if you are emulating an older browser when you still do
not support the new version, for instance, you emulate IE7 (EmulateIE7) on
IE9."
It means adding this line-
<meta http-equiv="X-UA-Compatible" content="IE=9">
(tells Internet Explorer to display a webpage in IE9 mode, if possible)
can cause-
1. Problems when using browser with older the IE9 version.
2. Forces IE10 to behave as IE9.
Because of the first cause this line was removed and not
changed to IE=10.
Change-Id: I3ebd720dec57b890b8119ff39efcfb50d34da9e2
Signed-off-by: Alona Kaplan <[email protected]>
---
M
frontend/webadmin/modules/frontend/src/main/java/org/ovirt/engine/ui/frontend/server/gwt/GwtDynamicHostPageServlet.java
1 file changed, 0 insertions(+), 1 deletion(-)
git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/78/11078/1
diff --git
a/frontend/webadmin/modules/frontend/src/main/java/org/ovirt/engine/ui/frontend/server/gwt/GwtDynamicHostPageServlet.java
b/frontend/webadmin/modules/frontend/src/main/java/org/ovirt/engine/ui/frontend/server/gwt/GwtDynamicHostPageServlet.java
index e01f209..a4f43fb 100644
---
a/frontend/webadmin/modules/frontend/src/main/java/org/ovirt/engine/ui/frontend/server/gwt/GwtDynamicHostPageServlet.java
+++
b/frontend/webadmin/modules/frontend/src/main/java/org/ovirt/engine/ui/frontend/server/gwt/GwtDynamicHostPageServlet.java
@@ -50,7 +50,6 @@
writer.append("<!DOCTYPE html><html><head>"); //$NON-NLS-1$
writer.append("<meta http-equiv=\"content-type\" content=\"text/html;
charset=UTF-8\">"); //$NON-NLS-1$
- writer.append("<meta http-equiv=\"X-UA-Compatible\"
content=\"IE=9\"/>"); //$NON-NLS-1$
writer.append("<script type=\"text/javascript\">"); //$NON-NLS-1$
writeAdditionalJsData(request, writer);
--
To view, visit http://gerrit.ovirt.org/11078
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I3ebd720dec57b890b8119ff39efcfb50d34da9e2
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Alona Kaplan <[email protected]>
_______________________________________________
Engine-patches mailing list
[email protected]
http://lists.ovirt.org/mailman/listinfo/engine-patches