microsoft-edge

filter: blur not working on MS Edge

冷暖自知 提交于 2019-11-29 09:50:53
Microsoft Edge is not supporting filter: blur(); like it should. If I have an absolute positioned element with filter: blur(); , inputs that appear on top will go nuts, merging with the blur (fun to watch). Here's a Fiddle to show what happens. Works perfectly in Chrome and Firefox, but Edge turns into borderline epileptic. Just click the input and enjoy: https://jsfiddle.net/Cthulhu/3uz0Lpfz/2/ Here's a code example: <style> article { background: url(http://uzebox.org/wiki/images/1/19/Arkanoid.gif) no-repeat; -webkit-filter: blur(20px); -moz-filter: blur(20px); -o-filter: blur(20px); -ms

Switching from Internet Explorer to Microsoft Edge

余生长醉 提交于 2019-11-29 09:46:42
After the recent release of Windows 10, including the new browser - Microsoft Edge - would anyone simply know how to open Microsoft Edge browser via Excel VBA. I have tried searching the website without any luck. This is the current basic Excel VBA coding I use to open the Internet Explorer: Sub xyz() Dim Browser As SHDocVw.InternetExplorer 'Microsoft Internet Controls Dim HTMLdoc As MSHTML.HTMLDocument 'Microsoft HTML Object Library Dim URL As String URL = "http://www.bbc.co.uk/news" Set Browser = New InternetExplorer Browser.Silent = True Browser.navigate URL Browser.Visible = True Do Loop

How to configure Protractor (JS) for running tests in Microsoft Edge?

狂风中的少年 提交于 2019-11-29 08:56:56
I want to set my protractor.conf.js to run tests in Edge instead of in Chrome. Setting this capabilities: { 'browserName': 'MicrosoftEdge' } results in SessionNotCreatedError: Unable to create new service: EdgeDriverService with an error code of 199. I downloaded the MicrosoftWebDriver.exe for the version of Edge that I have from Microsoft's website , but I can't figure out how to tell Protractor where to find that driver. I've tried adding it to my user path, my system path, the selenium folder in protractor's node modules folder, and giving a jvmArgs: or seleniumArgs: of ['-Dwebdriver.edge

Angular 2 not working with MS Edge

左心房为你撑大大i 提交于 2019-11-29 07:38:27
I get script errors when I'm loading my app in MS Edge. However Firefox, Chrome, IE11 all work, except for Edge... Here's a screenshot of the console: See here: HTML1300: Navigation occurred. localhost:23752 SCRIPT65535: Argument not optional zone.js (556,13) SCRIPT257: Could not complete the operation due to error 80020101. localhost:23752 (1,1) Unhandled Promise rejection: 'Zone' is undefined ; Zone: <root> ; Task: Promise.then ; Value: ReferenceError: 'Zone' is undefined ReferenceError: 'Zone' is undefined at NgZoneImpl (eval code:8749:13) at NgZone (eval code:8902:13) at PlatformRef_

how to detect IE and Edge browsers in CSS?

左心房为你撑大大i 提交于 2019-11-29 05:37:50
问题 Is there an standard way to detect IE and Edge browsers in css? I saw responses for detecting in javascript file but I am looking for one in css 回答1: For IE 9 and lower, load a conditional stylesheet: <!--[if IE]> <link rel="stylesheet" type="text/css" href="ie.css" /> <![endif]--> IE 10 and up doesn't support this, so you have to use media queries: @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { /* IE10+ CSS */ } For Edge 12-15: @supports (-ms-accelerator:true) { /*

Microsoft Edge: onclick event stops working?

感情迁移 提交于 2019-11-29 03:08:37
I have strange problems with my (ASP.NET) web application in Microsoft Edge. At a certain point the onclick event stops working. All buttons on the page that respond to the onclick event stop working. On the same page I have some buttons that respond to the onmousedown event and they keep working. If I refresh the page, the problem is gone. There are no errors in the console. I do not have this problem with other browsers (including IE11 under Windows 10). Did any of you experience similar problems? This is not a complete answer, as it doesn't address why click events don't work, but I feel it

Touch API (e.g. touchstart) not working in MS Edge

心不动则不痛 提交于 2019-11-29 02:28:13
问题 my application is using the Touch API to detect touch events in JavaScript. Example: $(".element").on("touchstart", function(event){ alert("TRUE"); }); This works on any touch device with any browser like Android or iOS, however it doesn't work in MS Edge on a Windows 10 Tablet with or without conntected keyboard. The API seems to be supported: Compatibility list. However, I've tested: 'ontouchstart' in window and this returns false on this device. Furthermore mousedown seems to get fired.

onBeforeUnload not working correctly for Chrome

烈酒焚心 提交于 2019-11-29 01:49:41
I've been using this code for some time and it worked fine until yesterday: window.onbeforeunload = function() { return "¡Atención! Si continúas no podrás volver atrás y podrías perder datos. Revisa todos los campos y termina el trabajo antes de moverte de esta página. ¿Seguro que quieres continuar?"; } The problem now is that Chrome shows this: But Edge shows it the right way: What am I doing wrong? Note: Language is not the problem because I've tried with both English and Spanish. You're not doing anything wrong. Google has decided to do what Mozilla did and not allow you to show a custom

Is there any method for opening specific web app by Internet Explorer from MS Edge browser?

拥有回忆 提交于 2019-11-28 14:42:39
I would like to know a method for opening a specific web application in Internet Explorer from within Microsoft Edge, because our web application has some problem with Edge. Is there any method? As suggested by TylerH, the first thing to do is determine the precise problem to see if it can be fixed on the site. If it is something that is not expected to work in Edge (e.g. reliance on custom ActiveX control), there are two ways to have the web app prompt to open IE from MS Edge: If it is a public Internet site that you own, email iepo@microsoft.com to have it considered for inclusion on the

CSS Variables don't work in Microsoft Edge [duplicate]

大城市里の小女人 提交于 2019-11-28 14:28:22
This question already has an answer here: Do CSS variables work differently in Microsoft Edge? 1 answer I am designing a new blogger Template. I want to make it easy to change the whole template color at the same time by changing the value of the variable , so I used these lines: :root { --bg-color: #fff; --url-color : #000; --main-color : #2daeeb; --main-hover-color : #2ca1de; --alt-color : #ff6347; } but unfortunately it doesn't work in Edge browser, even though I used the prefix: -webkit- mhatch CSS variables are not supported by IE nor will they ever be. Update: CSS variables are supported