microsoft-edge

Why does Microsoft Edge open some local websites, but not others, where the domain name is routed to 127.0.0.1 in hosts file

半世苍凉 提交于 2019-12-17 04:45:23
问题 Like a lot of programmers, I test sites locally. I use the hosts file to map domain names to my local ip (127.0.0.1). I use qualified domain names, usually with a "d" subdomain (for "development"). For example: d.somewebsite.com d.anotherwebsite.com and so on... In Microsoft edge, most of the web sites work. However, a couple of them do not. There is nothing special or weird about the domain names that won't work. Just a simple d.someletters.com . They work fine in Chrome, IE, and Firefox. In

With Angularjs, $http post return response error in Microsoft Edge

穿精又带淫゛_ 提交于 2019-12-14 01:26:46
问题 Well, while I develop an admin page for test, a weird problem occurred in Microsoft Edge. Here's part of source code to fetch response from server of loginCtrl.js $http({ method: 'POST', url: Define.apiUrl + 'admin/login', data: { user_id: $scope.login_email, password: $scope.login_password } }) .then(function (response) { if (response.data.success) { $cookieStore.put(Define.userInfo, response.data.info); $cookieStore.put(Define.userToken, response.data.token); } }, function (data) { console

CSS transform is not working in Edge

这一生的挚爱 提交于 2019-12-14 00:31:46
问题 I am stuck at the following problem. On this site that I created, I have a gallery which is located on the bottom of the page. If I hover over the thumbs, they fly around like crazy which is not what I want. It works like a charm on other browsers; only Microsoft Edge is affected. Can someone help me out to get the images to behave as expected? The CSS looks like this: .node-gallery { float: left; width: 150px; height: 150px; position: relative; margin: 0 60px 50px 0; } .node-gallery img {

Unknown Edge error code #c004e005

旧时模样 提交于 2019-12-13 16:02:23
问题 I’m trying to build oRTC application with latest Edge version. Followin code: iceGatherer.getLocalCandidates().forEach(iceGatherer.onlocalcandidate); throws error “c004e005” that don’t have any description. Anyone familiar with oRTC in Edge? 回答1: The “c004e005” error code is for an invalid state. You can find a list of the Microsoft Edge ORTC error codes in the MSDN documentation. The invalid state is likely thrown on the RTCIceServer regarding the IceGatherer, IceTransport, or DtlsTransport

Microsoft Edge: window.open only works correctly at first attempt

喜夏-厌秋 提交于 2019-12-13 12:35:43
问题 In MS Edge (windows 10 build 10162), window.open call only works correctly the first time, but subsequent window.open calls only shows a blue screen with the e logo. <body onclick="myOpen();"> <p>Click this page and window.open() is called.</p> <script> function myOpen() { window.open("http://jsfiddle.net/sbhat/f74wt293/", null, "height=200, width=400, status=yes, toolbar=no, menubar=no, location=no"); } </script> </body> See demo here: http://jsfiddle.net/sbhat/f74wt293/1/ Click on the page,

Total memory increasing in IE with Angular Directive

心不动则不痛 提交于 2019-12-13 08:45:50
问题 Currently I am experiencing an issue when running my angular code under IE 11. Due to Angular being incredibly slow to render a nested ng-repeat (even with one way bindings) I came up with the idea of using a directive to render the other <td> elements without adding any unnecessary watchers. I´ve made a plunkr to simulate the issue I am experiencing. Directive code below: https://plnkr.co/edit/MNtShl6iWGFoXBHP2jmM?p=preview .directive('tdRenderer', function($compile, $filter) { return {

selenium.common.exceptions.WebDriverException: Message: Unknown error while trying to use Edge and MicrosoftWebDriver.exe through Selenium

半城伤御伤魂 提交于 2019-12-13 08:38:27
问题 I created a script in Python, which scraps the Altium's website and gathers information regarding license usage. At this moment, I am using ChromeDriver, but I sometimes get errors due to the network being slow at different times of the day. I used the same script using the MicrosoftWebDriver (Edge) on my Personal Computer and I received no errors. When you launch the MicrosoftWebDriver.exe (downloaded from their website) it should open Edge, but when I use my company's laptop, nothing

Microsoft Edge and Angularjs: ng-model doesn't work with input number type and arrow keys

徘徊边缘 提交于 2019-12-13 07:37:55
问题 I have a input with type="number" , it is associated with a ng-model.I want to be able to press up and down arrows to update its value. However in Microsoft Edge the ng-model is not updated in this case, see my example here: https://plnkr.co/edit/yZaGxkYG87C1YCNSKnf0?p=preview Is there a way of updating the model, that's not using jquery? We want to avoid using jquery in controllers 回答1: So it's a bug from both angularjs and Edge, as seen in the discussion below: https://github.com/angular

Unicode displaying strange in Edge [duplicate]

我怕爱的太早我们不能终老 提交于 2019-12-13 04:18:27
问题 This question already has an answer here : How to prevent emojis rendering in Edge (1 answer) Closed 11 months ago . What I want it to look like: What it looks like in Edge: The Unicode character is ▶ I am assuming edge is just trying to be clever and displaying their own image for my unicode character. How do I prevnt this nonesense. I have googled with no avail. 回答1: You might find some insight in this thread. As it turns out, there is a workaround, but you would need to change the font

Angular 5 app not working in Microsoft Edge 40

狂风中的少年 提交于 2019-12-13 04:07:20
问题 I have angular 5.2 application. its working fine in chrome,firefox. but in Microsoft Edge 40.15063 its not loaded fully. we are using angular material design with scss. i enabled all IE/Edge support in pollyfills. but whenever i use microsoft edge i throws lot of error in debugging panel. /** IE9, IE10 and IE11 requires all of the following polyfills. **/ import 'core-js/es6/symbol'; import 'core-js/es6/object'; import 'core-js/es6/function'; import 'core-js/es6/parse-int'; import 'core-js