internet-explorer-11

Internet Explorer 11 computed timezone bug

∥☆過路亽.° 提交于 2021-01-28 07:14:54
问题 I am aware of the origin of the problem and googled like half a day, but still couldn't find any good workarounds or solutions for this. Our Angular 7+ application use a timezone interceptor , which looks like this: import { HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http'; import { Observable } from 'rxjs'; import { Injectable } from '@angular/core'; @Injectable() export class TimezoneInterceptor implements HttpInterceptor { constructor() { } intercept(req:

Web socket client connection issue in Windows 8.1+ IE 11 + loopback not allowed

泪湿孤枕 提交于 2021-01-28 04:48:37
问题 I am have created a C++ web socket server. I am trying to access it from IE 11 using web socket Javascript API. I am trying to connect to localhost. function JSInit() { try { var host = "ws://127.0.0.1:25000/test"; remoteEngine = new WebSocket(host); remoteEngine.onopen = onWebSocketOpen; remoteEngine.onmessage = onRecvMessage; remoteEngine.onclose = onWebSocketClose; remoteEngine.onclose = onWebSocketError; } catch (err) { alert(err.message); } } Is there in any restriction on accessing

Selenium WebDriver on IE11 always has “--port=” in URL

断了今生、忘了曾经 提交于 2021-01-28 03:24:27
问题 I am trying to run some automated tests on IE11 using Selenium Webdriver. Whenever I run my code the URL that IE tries to load is http://--port=38198/ I am trying to simply load Google and return the title, then I will move onto the actual automated testing I intend to do. Here is a sample of my code so far; private WebDriver driver; private String baseUrl; @Before public void setUp() throws Exception{ System.setProperty("webdriver.ie.driver", "C:\\Program Files\\Internet Explorer\\iexplore

Selenium WebDriver on IE11 always has “--port=” in URL

牧云@^-^@ 提交于 2021-01-28 01:50:58
问题 I am trying to run some automated tests on IE11 using Selenium Webdriver. Whenever I run my code the URL that IE tries to load is http://--port=38198/ I am trying to simply load Google and return the title, then I will move onto the actual automated testing I intend to do. Here is a sample of my code so far; private WebDriver driver; private String baseUrl; @Before public void setUp() throws Exception{ System.setProperty("webdriver.ie.driver", "C:\\Program Files\\Internet Explorer\\iexplore

How can I make JavaScript modules work in IE 11

梦想与她 提交于 2021-01-27 23:39:49
问题 I have JavaScript modules which I want to use with IE11. In the HTML pages they are referenced like this: <script type="module"> import * as mystuff from './scripts/mystuff.js'; window.mystuff = mystuff </script> They do not work in Internet Explorer 11, but I cannot change the modules to normal scripts (because they are generated by Transcrypt). How can I make them work with IE? Does a polyfill or something similar for the <script type="module"> construct exist? 回答1: You cannot do this. IE

Internet Explorer draws SVG incorrectly when updating xlink:href for a <use> element

纵饮孤独 提交于 2021-01-27 18:20:33
问题 https://jsfiddle.net/swoq9g3f/1/ I am having a problem where a simple SVG is drawn incorrectly in Internet Explorer (v11.0.9600.17728) after I change a xlink:href with javascript. If you render just the SVG in IE you get two concentric circles. The javascript sets the xlink:href value for a <use> element to #def1 , which is the value it was previously. After this IE renders only the larger circle, with the smaller circle hidden behind it. The smaller circle is later in the svg document

VueJS in IE 11 - template wrapper for <tr> not working, works in Edge and Chrome

杀马特。学长 韩版系。学妹 提交于 2021-01-27 16:38:00
问题 This is using Vue 2.5.16 in IE 11. Assume a dataset array in app.data, the following works fine in Chrome (and the code is simplified): ... <tbody> <template v-for="(datarow, index) in dataset"> <tr><td> {{ datarow }} {{ index }} </td></tr> <tr v-if="!(index % 50)"><td> -repeating header row- </td></tr> </template> </tbody> ... However, in IE 11, it does not work and furthermore there is no line and character number in console error (took me some time to figure out). It just says in red:

VueJS in IE 11 - template wrapper for <tr> not working, works in Edge and Chrome

こ雲淡風輕ζ 提交于 2021-01-27 16:34:15
问题 This is using Vue 2.5.16 in IE 11. Assume a dataset array in app.data, the following works fine in Chrome (and the code is simplified): ... <tbody> <template v-for="(datarow, index) in dataset"> <tr><td> {{ datarow }} {{ index }} </td></tr> <tr v-if="!(index % 50)"><td> -repeating header row- </td></tr> </template> </tbody> ... However, in IE 11, it does not work and furthermore there is no line and character number in console error (took me some time to figure out). It just says in red:

object doesn't support property or method 'findIndex' IE11 javascript issue

限于喜欢 提交于 2021-01-27 15:52:38
问题 I have an AngularJS application that is giving me some issues in Internet Explorer 11 - In my administration area I am getting console log errors that seem to correlate with some problems I have noticed in the page with filtering data when using Internet Explorer (version 11 specifically) however fine in Chrome/Firefox etc. Object doesn't support property or method 'findIndex' at Anonymous function (http://myapp.local/js/controllers/admin/UsersController.js:363:9) When I navigate to this line

Geolocation Current Position API not working in IE11.5 windows10

浪尽此生 提交于 2021-01-27 07:50:39
问题 Geolocation current position API is inconsistent in IE11 windows 10 machine. Below is the code function setCurrentPos(event, firstLoad) { navigator.geolocation.getCurrentPosition(function (position) { firstLoad || setCurrentLocation(event.target, position.coords); }, function (error) { 1 === error.code && ($this.currentLocDenied = !0); }); } 4 out of 5 times it is falling into the error block with response code 2(POSITION_UNAVAILABLE) stating "The current position could not be determined.".