internet-explorer-9

@font-face flash of unstyled text in internet explorer 9

谁说胖子不能爱 提交于 2019-12-21 21:19:06
问题 I'm currently building an asp site with @font-face but I have encountered the dreaded Flash Of Unstyled Text bug in internet explorer 9. So far I have moved my scripts underneath my css files and used the bullet proof syntax. As far as I can tell I have played by the rules but nothing seems to fix this problem. My question is this: Is this bug avoidable or are all these methods merely damage control via getting the browser to download the fonts quicker? I realise there similar questions, but

<meta http-equiv=“X-UA-Compatible” content=“IE=8” /> ignored in RichFaces webapp

◇◆丶佛笑我妖孽 提交于 2019-12-21 19:28:12
问题 I'm using JSF 2.0 and RichFaces 3.3.3 on Glassfish 2.1. I've created a web application with a modal panel that works great in my computer (local server). Because of IE9 incompatibility of the specific RichFaces version, I'm using the X-UA-Compatible: IE=8 meta tag in my HTML head: <meta http-equiv="X-UA-Compatible" content="IE=8" /> The modal panel look like this when I deploy in my local environment: But when I deploy in the production server, I've a problem. If I use IE with compatibility

Rendering SVG shapes with crisp edges in IE9

我们两清 提交于 2019-12-21 16:56:38
问题 IE9 appears not to honour the SVG shape-rendering="crispEdges" attribute. Here's a sample SVG: <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns="http://www.w3.org/2000/svg" height="600" id="svgroot" version="1.1" width="800" x="0" y="0"> <line style="stroke:#000000;stroke-width:1px;stroke-opacity:1" y2="300" y1="300" x2="750" x1="50" shape-rendering="crispEdges" /> </svg> It appears correctly under Firefox and Safari, however the line appears blured under IE9 and IE10

SCRIPT5: Access Denied on IE9 due to jQuery.min CDN file in Wordpress

天涯浪子 提交于 2019-12-21 12:58:11
问题 I've read quite a few other articles on the SCRIPT5: Access is Denied issue in IE9 but as far as I can tell this one is a little different and I'm not exactly sure why its happening. The situation arose on a Wordpress 3.4.1 install using the standard 2011 theme. I enqueued my scripts with the following function: function my_scripts(){ wp_deregister_script('jquery'); wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js',null,null,true); wp_register

Microsoft says IE9 has Parallel Javascript Rendering and Execution

旧城冷巷雨未停 提交于 2019-12-21 11:25:29
问题 The new JavaScript engine takes advantage of multiple CPU cores through Windows to interpret, compile, and run code in parallel. - http://technet.microsoft.com/en-us/library/gg699435.aspx and The Chakra engine interprets, compiles, and executes code in parallel and takes advantage of multiple CPU cores, when available. - http://msdn.microsoft.com/en-us/ie/ff468705.aspx Wait, what?!? Does this mean we've got multi-threaded parallel JavaScript code execution (outside of web-workers) in IE9? I'm

HTMLCanvas 'getContext' is not a supported property or method

只愿长相守 提交于 2019-12-21 10:36:33
问题 I've just lauched a HTML5 game application, and I keep receiving ' object doesn't support property or method 'getContext ' errors logs from some of my users. My setup only allows users with Chrome (16<), Firefox (9<) or IE (9<) to play the game. IE (<9) users gets a chromeframe installation in their face. Its only some of my IE9 users that throw this exception. I've played the game on several windows machines with IE9, both vista and windows 7. Searching my source, for the function call

Angular UI-Router Not Resolving with Internet Explorer 9

倾然丶 夕夏残阳落幕 提交于 2019-12-21 10:16:01
问题 I have an Angular v1.3 application, which uses Angular ui-router v0.2.13 for all routing. The site works great on all browsers, including IE 10 and IE 11, but not IE 9 (we've decided not to pursue IE8, which I understand isn't supported by v1.3, anyway). Despite my best efforts, IE 9 continually resolves to my $stateProvider's otherwise route (which is set to /*path , a possible culprit, so I disabled that route for testing purposes). In an attempt to get any other route to resolve, I've

getJSON or AJAX requests not working with IE9

点点圈 提交于 2019-12-21 09:29:35
问题 I have been trying to solve this problem for hours (searched here as well but none of the solutions worked) so I had no other option but to hope for someone to tell me why this is happening and how can I fix it. This is a simple code that works with Firefox but not with IE9 (don't have other versions) Example code is here: http://jsfiddle.net/z5b2J/ Source is this one: $.ajax({ url: "http://query.yahooapis.com/v1/public/yql?q=select%20script%20from%20html%20where%20url%3D%27https%3A%2F

Margin: Auto not working in IE

做~自己de王妃 提交于 2019-12-21 07:15:08
问题 URL: http://cyberbat.co.uk/test container margin: auto is not working, is there any other way to put it in the middle in IE. EDIT: Check it again, the index.php was the wrong file, I replaced it with index.html . 回答1: This is a bug in IE! You just need to create a holder for <div class="page"> and set its text-align to center .page-holder{ text-align:center; } .page{ margin:0 auto; } <div class="page-holder"> <div class="page"> page content </div> </div> 回答2: <!DOCTYPE HTML PUBLIC "-//W3C/

Word-wrap not working in Internet Explorer

自古美人都是妖i 提交于 2019-12-21 07:07:19
问题 When I'm using word-wrap:break-word with Browser Mode: IE9 Compatibility View and Document Mode: IE7 standards its working perfectly fine. However when I change the Document Mode: IE9 standards , its not working. I've also tried using -ms-word-wrap:break-word however its giving me the same result. Document Type Definition: DTD/xhtml1-transitional.dtd Can anyone tell me why is it so and if there is any workaround to cope up with it ? 回答1: you need to have table { width:100%; table-layout:fixed