internet-explorer-11

Display embedded PDF in Internet Explorer 11 from binary string or base64

倖福魔咒の 提交于 2019-12-18 08:47:13
问题 There is a 3rd party service which sends me a PDF file in either binary string or base64 encoded. Is there any possibility to display the PDF embedded in IE 11 using either binary string or base64 encoded. From SO and other forums, I concluded that IE 11 supports data uri only for images and not PDF (I might be wrong) which rules out base64. So the only option left is to display from binary string. I am using it in a Node App but I do not have the option to first save the retrieved file to

Display embedded PDF in Internet Explorer 11 from binary string or base64

社会主义新天地 提交于 2019-12-18 08:47:04
问题 There is a 3rd party service which sends me a PDF file in either binary string or base64 encoded. Is there any possibility to display the PDF embedded in IE 11 using either binary string or base64 encoded. From SO and other forums, I concluded that IE 11 supports data uri only for images and not PDF (I might be wrong) which rules out base64. So the only option left is to display from binary string. I am using it in a Node App but I do not have the option to first save the retrieved file to

html forms crash IE 11

半世苍凉 提交于 2019-12-18 06:58:02
问题 I have the following code. User fills and submits the first form. When he hits "submit" the data is stored in the db via websockets. At the same time , server returns a new id just created. This id is stored in a hidden form. The submit button of the hidden form appears after the id is returned. If users wants hits the submit of the hidden form (no longer hidden now) and transfers to another page, where the id is also transefer via the form. In the first form the user can hit a button and

ES6 spread syntax IE not supported

僤鯓⒐⒋嵵緔 提交于 2019-12-18 05:17:14
问题 I have a javascript code that is given below that is ES6 compatible however IE 11 does not support this. What would be the replacement code for this such that it works across all browsers? [...document.querySelectorAll('.row')] Im using this for 'click' event handling: Array.prototype.slice.call(document.querySelectorAll('.row')) .forEach(function(header) { return header.addEventListener('click', function(e) { headerClick(e, header, header.querySelector('.exy')) }); }); 回答1: For all browsers,

Is there a way to create a named pipe from an AppContainer BHO on IE11?

做~自己de王妃 提交于 2019-12-18 04:54:27
问题 I'm trying to write a BHO for Internet Explorer 11 (Windows 8.1). My BHO implements the AppContainer sandbox, but I can't seem to create a Named Pipe, CreateNamedPipe fails with that message: Access is denied. Here's the code I'm using to create the named pipe (which I found on a russian website, last comment: LPCWSTR LOW_INTEGRITY_SDDL_SACL_W = L"S:(ML;;NW;;;LW)D:(A;;0x120083;;;WD)(A;;0x120083;;;AC)"; PSECURITY_DESCRIPTOR pSD = NULL; ConvertStringSecurityDescriptorToSecurityDescriptorW ( LOW

align-items, align-self not working on IE11

大城市里の小女人 提交于 2019-12-18 04:46:16
问题 I have a simple plunker here. .container { display:flex; flex-flow: row nowrap; justify-content: space-between; align-items: center; min-height: 4em; } .nav { flex: 0 0 4em; height: 1em; } .logo { flex: 1 0 auto; align-self: stretch; } This is working how I want it to in Chrome 49: But not in IE11: I have checked that IE isn't in compatability mode - it's not - it's in IE11 mode. What's going on here? 回答1: This is a bug in IE11. The min-height property on a flex container isn't recognized by

IE11 does not send session cookie when a link targeting a new tab is clicked (on first request)

痴心易碎 提交于 2019-12-18 04:35:07
问题 I am having some trouble holding onto session when opening an initial new tab (target _blank) from IE11. When I close all instances of IE11 and then open a fresh browser and navigate to the test webpage (default.aspx) the page stores a value in session and displays the session ID on the page. If I refresh the page the session ID stays the same. The page has a link to itself (default.aspx) with a target of _blank. If I click this link a new tab is opened, but the session ID is different. If I

Unable to find element on closed window on IE 11 with Selenium

拥有回忆 提交于 2019-12-18 00:14:54
问题 I'm trying to run tests on Internet Explorer 11 working with Selenium WebDriver. The code is: System.setProperty("webdriver.ie.driver", "Path/to//IEDriverServer.exe"); WebDriver driver = new InternetExplorerDriver(); driver.get("www.google.com"); driver.findElement(By.name("q")); And I get this error: Started InternetExplorerDriver server (64-bit) 2.46.0.0 Listening on port 43760 Exception in thread "main" org.openqa.selenium.NoSuchWindowException: Unable to find element on closed window

__doPostBack is undefined in IE11

泄露秘密 提交于 2019-12-17 23:39:24
问题 Using a readymade asp HyperLink control, IE 11 is giving the error SCRIPT5009: __doPostBack is undefined with a link to here: http://msdn.microsoft.com/en-us/library/ie/xyf5fs0y(v=vs.94).aspx This is seen in the F12 devtools console window. Has anybody encountered this yet and is there a fix? This is a production environment. EDIT : Applying hotfix http://support.microsoft.com/kb/2600088 didn't work for me, and IE 10 on Windows 8 works fine. There is more recent article from Scott Hanselman

window.ActiveXObject difference in IE11

▼魔方 西西 提交于 2019-12-17 23:29:29
问题 While looking over our site in IE11 to find out what's broken now, we noticed that the below code doesn't evaluate to "true" correctly: this.isIEBrowser = false; if (window.ActiveXObject){ this.isIEBrowser = true; } Upon further investigation, it appears that typeof(window.ActiveXObject) results in "undefined" , whereas in IE10 mode, it results in "function" . When I add window.ActiveXObject to the watch list, it shows as being a function type. Similarly, if I do typeof(window.ActiveXObject