microsoft-edge

How to tell Microsoft Edge what it should display in reading mode

三世轮回 提交于 2019-12-10 17:43:43
问题 Reading mode in Spartan/Edge seems to choose, somehow, which div on the site to display in reading mode. In many pages, it does not find the appropriate div (like bbc.co.uk). However, on our site, it enables reading mode, but then displays the completely wrong part of the page. So - how can I tell it to take the right part or at least how to disable it on those pages 回答1: You can find information on how to optimize reading view, as well as how to opt-out, here: http://dev.modern.ie/testdrive

CSS Grid not workiing on IE11 or Edge even with -ms prefix [duplicate]

陌路散爱 提交于 2019-12-10 17:35:26
问题 This question already has answers here : CSS Grid Layout not working in IE11 even with prefixes (4 answers) Closed 2 years ago . I've been following the guide here on getting grids working on IE 11. My problem is that even following those rules, the columns and rows just overlap each other rather than taking their grid positions. Here's a simple code example that would cause the problem: HTML <div class="grid"> <div>Top Left</div> <div>Top Right</div> <div>Bottom Left</div> <div>Bottom Right<

Microsoft Edge clean session

做~自己de王妃 提交于 2019-12-10 16:07:45
问题 Microsoft Edge driver does not ensure clean session whenever it runs selenium tests. Is there an option I can specify to desired capabilities to fix this? 回答1: Just encounter that issue myself today so the only way I got it to work was pretty simple in the end. You have to check "Always clear this when I close the browser" in Edge settings (and select the things that you want to clear). With that setting you will have clean session on each new driver initialization :) 回答2: Another solution

Edge not loading ES 6 modules

懵懂的女人 提交于 2019-12-10 16:07:23
问题 Microsoft Edge doesn't load my ES 6 modules. All other browsers (Opera, Safari, Chrome, Firefox) do. It downloads them all fine but doesn't run them. I see only the non-module file. And the console does not report any errors. I am using Edge 17.17134 on Windows 10. This page suggests that Microsoft Edge with build number 16299 and above supports ES6 modules. As you can see from my version information above, my build number is 17134, so it must support them. My page has the following 3 scripts

How to fix Microsoft Edge displaying incorrect table cell widths when child element with defined width is within a cell with a colspan?

杀马特。学长 韩版系。学妹 提交于 2019-12-10 14:59:12
问题 Pretty hard to explain, but easier to show via JSFiddle I have a table with 3 cells: <table class="table"> <tr> <td style="background:blue;width:60%;">Some text for 1st cell</td> <td style="width:40%;background:red;"></td> </tr> <tr> <td colspan="2" style="width:100%;background:yellow;"><div style="width:400px;"> test </div></td> </tr> </table> The table has a width of 100%: .table { width:100%; } When a child element with a defined width is placed within the bottom cell which has a colspan ,

How do you download a image/png data URI in Edge?

前提是你 提交于 2019-12-10 14:41:59
问题 I am trying to export an SVG created in the browser (a d3.js chart) as a PNG using methods based from https://github.com/exupero/saveSvgAsPng and http://techslides.com/save-svg-as-an-image. The SVG is converted to a data URI and rendered as an image in a canvas, which is converted to a PNG data URI. This URI is downloaded as a file using an anchor tag. I have been able to confirm this to work in current versions of FF, Chrome, and Safari; however, triggering the download on the anchor tag

alternative to audioContext.copyToChannel() in Safari and Edge

走远了吗. 提交于 2019-12-10 13:52:26
问题 Both Safari and Edge do not support the audioContext.copyToChannel() function to populate an audioBuffer with custom content. Is there any other way to do it? In my case, I want to create an impulse response, populate a buffer with that response and convolve some sound with that buffer. For Chrome and Firefox this works: buffer = audioCtx.createBuffer(numOfChannels, 1, sampleRate); buffer.copyToChannel(impulseResponse, 0); buffer.copyToChannel(impulseResponse, 1); convolverNode.buffer =

const doesn't work in Edge 15 developer tools

有些话、适合烂在心里 提交于 2019-12-10 13:34:39
问题 I am running Edge/15.15063. 'Can I Use' says const should work. Running: const x = 'woo' Then: console.log(x) Returns 'x' is undefined Screenshot: Why isn't const working? 回答1: I suspect that the Edge console is using a with statement under its covers like other implementations did. This would explain var s and even function declarations being hoisted outside into the global scope, but let and const will be locked into the block scope: with (…) { const x = 'woo' } // next input: with (…) {

Does Windows Edge browser drop the Compatibility mode?

怎甘沉沦 提交于 2019-12-10 13:24:57
问题 We've been using the x-ua-compatible meta tag in our html, in IE , to force the client to IE-9 . Will this no longer work? This article would suggest the meta tag will not be ignored and forced to the new Edge mode. http://blogs.windows.com/msedgedev/2014/11/11/living-on-the-edge-our-next-step-in-helping-the-web-just-work/ 回答1: That article is old and Microsoft has changed their stance later (approx. February-March). Edge will not be burdened with IE compatibility features. It will only have

Is it possible to create and use a Microsoft Edge variable / object in VBA?

主宰稳场 提交于 2019-12-10 11:07:25
问题 I have some VBA code that pulls stock prices from the web. My code uses an InternetExplorer object / document to do so. However, if possible, I would like to use a Microsoft Edge object / document instead. In my current code: I initialize an InternetExplorer variable: Dim ie As InternetExplorer Then I create an object: Set ie = CreateObject("InternetExplorer.Application") I'm wondering if it is possible to use a Microsoft Edge instead of Internet Explorer object / document in my code. Thank