internet-explorer

CSS keyframe animation not working as intended in IE and Edge

天大地大妈咪最大 提交于 2020-03-01 15:35:46
问题 I made this animation and it's working like a charm in every browser but IE and Edge. You can see the page here https://jsfiddle.net/03ddygdx/ .progress-container { position: relative; } .background-progress-bar, .progress-bar { width: 100%; height: 10px; top: 0px; left: 0px; position: absolute; } .background-progress-bar { background-color: pink; z-index: 8; } .progress-bar { background-color: red; z-index: 9; } .indeterminate { animation: indeterminate 2.5s infinite linear; } @keyframes

CSS keyframe animation not working as intended in IE and Edge

♀尐吖头ヾ 提交于 2020-03-01 15:35:19
问题 I made this animation and it's working like a charm in every browser but IE and Edge. You can see the page here https://jsfiddle.net/03ddygdx/ .progress-container { position: relative; } .background-progress-bar, .progress-bar { width: 100%; height: 10px; top: 0px; left: 0px; position: absolute; } .background-progress-bar { background-color: pink; z-index: 8; } .progress-bar { background-color: red; z-index: 9; } .indeterminate { animation: indeterminate 2.5s infinite linear; } @keyframes

CSS keyframe animation not working as intended in IE and Edge

孤者浪人 提交于 2020-03-01 15:34:20
问题 I made this animation and it's working like a charm in every browser but IE and Edge. You can see the page here https://jsfiddle.net/03ddygdx/ .progress-container { position: relative; } .background-progress-bar, .progress-bar { width: 100%; height: 10px; top: 0px; left: 0px; position: absolute; } .background-progress-bar { background-color: pink; z-index: 8; } .progress-bar { background-color: red; z-index: 9; } .indeterminate { animation: indeterminate 2.5s infinite linear; } @keyframes

Site broken IE11 in windows 8 - goes to Enterprise mode

拥有回忆 提交于 2020-02-25 09:57:45
问题 Our site is breaking real bad in IE11. What's happening is that it goes into "Document Mode" 5 (Default) and Browser profile is forced as Enterprise. As soon as I change Enterprise to Desktop, the site is all good. Is there any way, I can force my site not to go to Enterprise and/or Use Edge as document mode ? I have tried following but nothing worked:- putting this right after <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> changing Doctype as :- <!DOCTYPE html PUBLIC "-//W3C/

Site broken IE11 in windows 8 - goes to Enterprise mode

那年仲夏 提交于 2020-02-25 09:49:48
问题 Our site is breaking real bad in IE11. What's happening is that it goes into "Document Mode" 5 (Default) and Browser profile is forced as Enterprise. As soon as I change Enterprise to Desktop, the site is all good. Is there any way, I can force my site not to go to Enterprise and/or Use Edge as document mode ? I have tried following but nothing worked:- putting this right after <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> changing Doctype as :- <!DOCTYPE html PUBLIC "-//W3C/

IE or Edge Print dialog box send request to server without session (because SameSite=Lax on session cookie)

江枫思渺然 提交于 2020-02-25 07:17:29
问题 I have a asp.net site, which users can login and members can get report or print page by Ctrl+P. Recently when my members open my site in IE and try to print, they are logged out! why? because IE print dialog send some request to server without session cookie, so StateServer release new session for this client and then user logged out. Why print dialog sent request? I don't know, but i guess IE print dialog try to renders page and ready it for print. Why print dialog don't sent current

How to handle File download dialog/popup in IE browser USING SELENIUM and C#

大兔子大兔子 提交于 2020-02-24 16:13:11
问题 I have page which downloads a file which shows a dialog on the bottom with OPEN SAVE CANCEL options, how can I click those options ? I am using IE browser, I saw some solutions using third party AutoIt, Robot class, but I am looking with Selenium and C# only. Attached is the image of what I am talking.. Any idea how can we do this ? 回答1: You can try this code. using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using OpenQA.Selenium; using OpenQA.Selenium.IE; using OpenQA

How to handle File download dialog/popup in IE browser USING SELENIUM and C#

烂漫一生 提交于 2020-02-24 16:13:00
问题 I have page which downloads a file which shows a dialog on the bottom with OPEN SAVE CANCEL options, how can I click those options ? I am using IE browser, I saw some solutions using third party AutoIt, Robot class, but I am looking with Selenium and C# only. Attached is the image of what I am talking.. Any idea how can we do this ? 回答1: You can try this code. using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using OpenQA.Selenium; using OpenQA.Selenium.IE; using OpenQA

Test Automation for Internet Explorer

泄露秘密 提交于 2020-02-23 09:58:17
问题 Is there any tools for GUI Test Automation for Internet Explorer? I already use Selenium for Mozilla Firefox, but I also need a tool for IE. 回答1: * UPDATE * Selenium Web Driver is the successor to Selenium RC. So the answer is still to use Selenium in some form. That could be any of the supported frameworks. Personally I'd use Protractor (useful for more than just Angular apps) or Leadfoot (from the Intern.io project). * ORIGINAL RECOMMENDATION * If you're already using Selenium, I'd use

HTML <details> tag does not work in IE/Edge

杀马特。学长 韩版系。学妹 提交于 2020-02-21 10:40:08
问题 I am trying to add additional toggleable section that user can show and hide. My requirements: supported on major browsers (Opera, Chrome, Edge, IE11, Firefox, Safari on Mac) no javascript And was thinking of using the <details> tag, however the code <details> <summary>Toggle</summary> <p>Hideable</p> </details> does not work on the Edge / IE browsers. Can I anyhow "make" it work, or is there anything else I can use for that task? Hacks are OK, as long as no javascript is present. 回答1: This