diff options
author | Dave Methvin <dave.methvin@gmail.com> | 2012-06-16 10:57:41 -0400 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2012-06-16 10:57:41 -0400 |
commit | a416e2ba0d10bf1e1e94b5d023543d38ad08fcfb (patch) | |
tree | 73eb3cbe99e76214e174e0dcaf6ee07fd9ad10f4 /test/index.html | |
parent | ea9ec9527647f0cea396ca536e6f34b4a4491d11 (diff) | |
download | jquery-a416e2ba0d10bf1e1e94b5d023543d38ad08fcfb.tar.gz jquery-a416e2ba0d10bf1e1e94b5d023543d38ad08fcfb.zip |
Ensure that IE stays in Big Boy mode.
Although we use a lot of iframes in the test, the IE document mode is set by the parent document so we just need a single X-UA-Compatible in the main file.
http://msdn.microsoft.com/en-us/library/cc288325(v=vs.85).aspx
Diffstat (limited to 'test/index.html')
-rw-r--r-- | test/index.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/index.html b/test/index.html index 351383086..9d1e70344 100644 --- a/test/index.html +++ b/test/index.html @@ -2,6 +2,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr" id="html"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <meta http-equiv="X-UA-Compatible" content="IE=Edge" /> <title>jQuery Test Suite</title> <link rel="Stylesheet" media="screen" href="qunit/qunit/qunit.css" /> <link rel="Stylesheet" media="screen" href="data/testsuite.css" /> |