microsoft-edge

HTML5 Canvas blending & IE / Edge

心已入冬 提交于 2020-01-07 06:43:13
问题 I'm working on a project that makes use of Canvas blending - of course, IE/Edge still don't support blending modes. Some simplified code (fiddle here) that shows the issue: <canvas id="below" width="100" height="100"></canvas> <canvas id="texture" width="100" height="100"></canvas> <canvas id="composite" width="100" height="100" style="z-index:1x solid green;"></canvas> var can = document.getElementById('below'); var below = can.getContext('2d'); below.fillStyle = "#FF0000"; below.fillRect(0

transform: translate() and matrix3d() break hover and click in Microsoft Edge

爱⌒轻易说出口 提交于 2020-01-07 03:00:28
问题 A situation arises with block elements that use transform: translate() and matrix3d() as part of an animation sequence (animation is by GSAP, but that shouldn't be relevant to the problem since all GSAP does is update CSS properties in real-time). Expected: Regardless of size or position, elements should remain interactive to mouse. (works properly in Chrome, FF, Safari, IE11). Actual: Some will work, once or twice, if you're lucky, and then after that none of the others will respond to the

Opening a new window using window.open in Microsoft Edge isn't working

僤鯓⒐⒋嵵緔 提交于 2020-01-06 17:11:03
问题 When using window.open with below given code, there is issue in closing the Window, Minimizing the window, and maximizing the window. window.open(url, '_blank', "height=" + winH + ",width=" + winW + ",fullscreen=yes"); After pressing win+D (minimizing all windows), and opening only the new window, the above mentioned buttons (Minimize, Maximize, Close) were working. 回答1: On Build 10162, I got it working here on this JSFiddle http://jsfiddle.net/RamiSarieddine/wu09fh1d/ window.open("http://dev

Opening a new window using window.open in Microsoft Edge isn't working

断了今生、忘了曾经 提交于 2020-01-06 17:10:29
问题 When using window.open with below given code, there is issue in closing the Window, Minimizing the window, and maximizing the window. window.open(url, '_blank', "height=" + winH + ",width=" + winW + ",fullscreen=yes"); After pressing win+D (minimizing all windows), and opening only the new window, the above mentioned buttons (Minimize, Maximize, Close) were working. 回答1: On Build 10162, I got it working here on this JSFiddle http://jsfiddle.net/RamiSarieddine/wu09fh1d/ window.open("http://dev

Where does Microsoft Edge save localsorage on a computer under windows 10?

元气小坏坏 提交于 2020-01-06 14:47:57
问题 Where can I find the localstorage folder for Microsoft Edge? I am seeking the folder path. 回答1: I test this issue and try to find the location for local storage file on computer for Edge. Based on my search this file is hidden and if you turn the option on to display the hidden files then also this file will not get visible. To see this file you need to use the search option to find the file in windows Explorer. If I copy the path from address bar then it shows path below. ms:displayname

Where does Microsoft Edge save localsorage on a computer under windows 10?

ぐ巨炮叔叔 提交于 2020-01-06 14:46:26
问题 Where can I find the localstorage folder for Microsoft Edge? I am seeking the folder path. 回答1: I test this issue and try to find the location for local storage file on computer for Edge. Based on my search this file is hidden and if you turn the option on to display the hidden files then also this file will not get visible. To see this file you need to use the search option to find the file in windows Explorer. If I copy the path from address bar then it shows path below. ms:displayname

Compatibility of document.querySelectorAll in IE, Edge and Safari

十年热恋 提交于 2020-01-06 11:07:31
问题 Reference answer: https://stackoverflow.com/a/38399344/5132413 Please refer my question and the answer linked above works only in Firefox, Chrome, and Opera. I did some research and found that it (case insensitivity flag) isn't compatible. I need an equivalent in IE, Edge and Safari. var divs = document.querySelectorAll('div[class^="foo" i]'); 回答1: Since css level 4 is still in drafts, case-sensitivity selector is not compatible with most browsers. You may use filter method like this: var

Compatibility of document.querySelectorAll in IE, Edge and Safari

99封情书 提交于 2020-01-06 11:07:14
问题 Reference answer: https://stackoverflow.com/a/38399344/5132413 Please refer my question and the answer linked above works only in Firefox, Chrome, and Opera. I did some research and found that it (case insensitivity flag) isn't compatible. I need an equivalent in IE, Edge and Safari. var divs = document.querySelectorAll('div[class^="foo" i]'); 回答1: Since css level 4 is still in drafts, case-sensitivity selector is not compatible with most browsers. You may use filter method like this: var

How do I right-click -> Save in Microsoft's Edge browser?

梦想与她 提交于 2020-01-06 00:54:50
问题 In Chrome, you can right-click and see an option to 'Save Link As', but it doesn't appear the same way in Edge. 回答1: The short answer: You can't, as of today. Currently there is no mechanism to right click on a link and “save as” or “save target as.” It's on the radar, and you can make additional requests on User Voice. 来源: https://stackoverflow.com/questions/31976394/how-do-i-right-click-save-in-microsofts-edge-browser

SVG linear gradient set as background doesn't work in Edge and IE

最后都变了- 提交于 2020-01-05 04:24:38
问题 I am using SVG shape with linear gradient color via background: url(#{$imgUrlBase}/element.svg); Works just fine everywhere, except for Edge and IE, where the shape appears correctly, but instead of gradient, there is only solid color. For multiple reasons (simple use of png fallback) I would like to use this way of implementation. I did not find any not of limitation of this usage regarding Edge. This is element.svg <?xml version="1.0" encoding="utf-8"?> <svg version="1.1" id="l" xmlns="http