internet-explorer-11

IE 11 doesn't process font declaration correctly

 ̄綄美尐妖づ 提交于 2019-12-12 20:27:28
问题 The following font declaration is not working in Internet Explorer 11. font:300 28px/1.1em 'Lora', arial, sans-serif; The text is displayed in arial instead of Lora . Lora is a Google Font. It's working however in Mozilla Firefox, QupZilla and Google Chrome. But when I change the declaration to font:300 28px/1.1em 'Lora'; it's working in IE 11. What could be the problem? It gets even stranger : When I save the website as an *.html file to my local disc, the font is displayed correctly. :-(

IE error with Angular 2

我的梦境 提交于 2019-12-12 17:12:07
问题 I need help on this IE error which I think relates on binding issue on my HTML page. I'm using IE 11 and Angular 2. It has no error on Chrome and Firefox but I got an error on this with IE 11 only. I can't trace where the exact error is located on my page but I know it's on my HTML page somewhere because of this part of the error. at View_EdataReportingComponent0.prototype.detectChangesInternal (Function code:2933:5) Here's the screenshot from the console in IE which shows the error. And here

IE11 + jQuery 1.8.3: dynamically added textarea with placeholder has text set to placeholder

旧时模样 提交于 2019-12-12 16:07:27
问题 This is very likely a bug, but I'm reporting it here for reference and for the slight chance of someone being able to propose a workaround. IE 11 supports the placeholder attribute natively on textarea elements. That's great. But adding a new textarea with a placeholder to the DOM, it automatically puts the placeholder text into the textarea's field, too! Here's the repro: http://jsfiddle.net/wE577/1/ 回答1: Fiddling around on jsfiddle, it turns out that from jQuery 1.9 onwards, this problem

Inline SVG background not working in Internet Explorer 11

我是研究僧i 提交于 2019-12-12 14:43:06
问题 I have the following inline SVG defined as a background-image in my css. div { border: 1px solid black; background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 10 10'> <path d='M2 10 L8 0 L10 0 L10 10' fill='%238A92DF'></path></svg>"); background-repeat: no-repeat; background-position: center center; background-size: 100%; } It works fine in Chrome, Firefox and Edge, but fails in Internet Explorer 11.

Is there any reliable way to use ctx.drawImage() in IE11?

坚强是说给别人听的谎言 提交于 2019-12-12 13:43:33
问题 I have a script that creates dynamic SVG graphics from a data query. I need to stick 'em in a PDF, I'm using jsPDF for this. Unfortunately, jsPDF's own addSVG doesn't seem to work so I've spent some time trying to convert the SVGs to PNGs, using canvas. I seem to be getting the SVG data URI plugged into an img object ok, but when I try to draw it to the canvas, I get the 'unexpected property or method' error in IE11. I've tried the following: img.onload = function () { ctx.drawImage(img,0,0);

OpenLayers: Does not work in internet explorer

痞子三分冷 提交于 2019-12-12 12:36:01
问题 I have this simple code: <HTML> <head> <title>Vector Icon Example</title> <script src="https://code.jquery.com/jquery-1.11.2.min.js"></script> <link rel="stylesheet" href="../apidoc/styles/bootstrap.min.css"> <script src="../apidoc/scripts/bootstrap.min.js"></script> <link rel="stylesheet" href="../css/ol.css" type="text/css"> <script src="../build/ol.js"></script> </head> <BODY> <div id="map" style="width: 100%, height: 400px">ggg</div> <script> new ol.Map({ layers: [ new ol.layer.Tile(

IE11 Ignoring @page rule?

徘徊边缘 提交于 2019-12-12 12:13:31
问题 I'm trying to set the margins on a page that I am printing. In chrome, it looks great. IE not so much. I'm trying to set the margins like so: @media print { @page { margin: -0.5cm; margin-left: -1.5cm; margin-right: -1.5cm; } } I'm referencing the css file like this in the head: <link rel="stylesheet" href="Content/print.css" type="text/css" media="print"> I'm able to adjust the margins just fine in chrome by tweaking the margin values, but in IE11, it seems to be completely ignoring this....

Cursor in wrong position in IE11 after CSS transform w/ transition

一个人想着一个人 提交于 2019-12-12 11:59:22
问题 jsfiddle here This is a bug specific to IE and I'm looking for a work around. When I apply a CSS transform: translate to a text input, that has the focus, with transition set to something valid, the cursor stays in the old location while the element moves. Once you start typing it moves to the correct location, but before that the cursor stubbornly blinks at the old location. This code illustrates the problem... again, it's an IE specific bug. var toggleTop = function(){ $('.input-container')

NoSuchWindowException was unhandled : Unable to find element on closed window. IE 11 - Selenium C#

半城伤御伤魂 提交于 2019-12-12 11:22:18
问题 May be this question has been asked many times before. But i went through all the related questions in stackoverflow , but couldn't find any satisfactory solution. Well i'am writing a selenium automation code in VS2010 using C#, IE11 is my web browser on which i'am performing testing. Using IEDriverServer 32bit version in Windows 7 to open IE instance. I already knew that there is some compatibility kind of issue between selenium and IE 11, but still my code worked fine up till now when i

IE11 XMLHttpRequest: Network Error 0x2eff, Could not complete the operation due to error 00002eff

我的梦境 提交于 2019-12-12 10:50:43
问题 I have an ajax POST request like below, $.ajax({ url: url, type:"POST", contentType:"application/html; charset=utf-8", dataType:"html", success: function(data) { .... .... }, error: function() { ..... } }); It works perfectly fine when I try in chrome/firefox browsers any number of times. In IE11,there are no issues when I use this function once or twice but when I invoke it multiple times continuosly (something like 10 to 12 times) I get the error as below in IE console. SCRIPT7002: