internet-explorer-11

IE11 border radius and border bug

孤者浪人 提交于 2019-11-29 05:39:46
I have an odd visual bug in IE11 as you can see in image here > http://www.jonwallacedesign.biz/ie11.png See the odd effect on corners of the white "WHY USE US" li button.... The combination of border-radius , background-image and border: 1px solid #colour seems to be creating this odd horrid effect. Anyone know of a solution to fix? CSS of the LI is: background-image: url("../images/core/primnavItemBG_sprite.png"); background-position: 0 0; border: 1px solid #FFFFFF; border-radius: 6px; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2); color: #2062AF; font-family: 'Montserrat',Helvetica,Arial,sans

findIndex() method issue with internet explorer

两盒软妹~` 提交于 2019-11-29 05:34:53
I am doing some tests with differents browsers using the Selenium::Remote::Driver module. I would like to check if I find some item in my web site list, list from a framework JavaScript (which creates grids). For this case I have to use JavaScript snippet allowed by Selenium::Remote::Driver . I wrote the following code $script = q{ var paramProgramName = arguments[0]; var list = $('#c-list').dxList('instance'); var items = list.option('items'); var index = items.findIndex(function(el){ return el.name == paramProgramName; }); list.selectItem(index); return ; }; $driver->execute_script($script,

IE11 flexbox preventing text wrapping? [closed]

*爱你&永不变心* 提交于 2019-11-29 05:30:34
问题 I am developing a site which displays OK in the latest versions of Firefox/SeaMonkey/Chrome, but interestingly in IE11 there is a rendering problem: http://devel.gooeysoftware.com/mozaddons/switching.php If you load this in IE11, the "Switching from Firefox to SeaMonkey" menu item along the left does not get its text wrapped to the size of the containing DIV, but instead overflows. I can't see why this is. Is it just a bug in IE11 or am I missing some CSS to get it to wrap? UPDATE: Looks like

Angular 4.0.0 App built by angular-cli 1.0.0 not working in IE11

雨燕双飞 提交于 2019-11-29 05:17:48
问题 I try to run my virgin Angular 4 Application built by the angular-cli 1.0.0 in the Internet Explorer 11, but I have no success and I get the following error: Error: The "apply" property of an undefined or null reference can not be retrieved. I have no additional library installed, it is just a new generated project. In Google Chrome it is working perfectly. My package.json: { "name": "angi4testie", "version": "0.0.0", "license": "MIT", "scripts": { "ng": "ng", "start": "ng serve", "build":

Font-awesome disappears after refresh for all ie browsers ie11,ie10,ie9

China☆狼群 提交于 2019-11-29 04:47:29
I know it seems this question has been asked before, but the solutions I've found are for IE8 only. We are using Font Awesome 4.1.0 and Bootstrap v3.0.3 in our project. If we load the page for the very first time all the icons render properly. When we reload page in Internet Explorer using Ctrl + R, they disappear. This issue is occurring for all IE versions we've tested, including IE11. So the issue was on IE with https in all the request one header related to no-catch pragma was coming extra and that header was causing issue in loading font. following code was added to context.xml file to

Internet Explorer fails opening a pdf string file

我的梦境 提交于 2019-11-29 02:35:10
I receive (from a webservice I don't manage) a string with the content of a pdf file. On client's side, I use this function: window.open('data:application/pdf;base64,'+encodeURI(TheStringWithThePdfContent)); As usual, it works in every browser but IE (11 in my case), which shows an alert with the message: "Do you want to allow this website to open an app on your computer?" If I say no, an empty white page is opened. If I say yes, it tries to open a "data" file (as it reads from the protocol in window.open, I guess) and, as it doesn't find any application to do that, sends me to the Microsoft

IE11 triggers css transition on page load when non-applied media query exists

谁说胖子不能爱 提交于 2019-11-29 01:48:59
I have a situation which only occurs on IE11. Chrome, Firefox, Safari (tablet and phone) all work as expected. I have created a transition for a panel(DIV) that slides in/out from the side. On pageload it should NOT "animate" but snap into the appropriate position. But on IE11 when the page loads the transition is "played" ONLY if there is a media query involved with that element matching the highest level of CSS specificity for the selector. The strange thing is that the media query is not even appropriate (should never be applied when the page is loaded in my test) . The following simple

Blurry background images after update to IE11

≡放荡痞女 提交于 2019-11-29 01:16:35
问题 So this morning I got an automatic update to IE 11, after checking my eyes it appears that some of my background images are blurry. I had to check that it was not my image causing the problem, so after firing up Chrome, they were nice and crisp again... I am completely baffled. I've now uninstalled the IE11 update and they are once again nice and crisp in IE10... Has anyone else encountered this? I've included a screen shot showing the images in the different browsers. Here is a link to a

How do you run an xPath query in IE11?

こ雲淡風輕ζ 提交于 2019-11-28 23:29:47
At one point in our system we use javascript to read in a chunk of XML and then query that XML document using xPath. Prior to IE 11, IE supported using xmldoc.selectSingleNode(“//xpath/string”) and the non IE browsers supported using a xmldoc.evaluate(“//xpath/string”). These both returned a similar object that we could then carry on interpreting to extract the data required. In IE11 neither of these methods seem to be available. It seems that IE11 has some support for XML documents in that when I read in the xml using the DOMParser object using the parseFromString method, it returns an object

__doPostBack is undefined in IE11

孤街醉人 提交于 2019-11-28 21:31:25
Using a readymade asp HyperLink control, IE 11 is giving the error SCRIPT5009: __doPostBack is undefined with a link to here: http://msdn.microsoft.com/en-us/library/ie/xyf5fs0y(v=vs.94).aspx This is seen in the F12 devtools console window. Has anybody encountered this yet and is there a fix? This is a production environment. EDIT : Applying hotfix http://support.microsoft.com/kb/2600088 didn't work for me, and IE 10 on Windows 8 works fine. There is more recent article from Scott Hanselman with updated information. http://www.hanselman.com/blog/IE10AndIE11AndWindows81AndDoPostBack.aspx I will