internet-explorer-11

Accessing named pipe servers from within IE EPM BHO

无人久伴 提交于 2020-01-25 04:29:06
问题 I am trying to make some changes to our legacy product to support IE EPM on the BHO. I have managed to get it to load and the various methods - SetSite, DocumentComplete etc. - get invoked. I seem to be hitting a snag when trying to connect to the named pipe server running inside a Windows Service. Previously, we had already made changes to allow IE BHO in protected mode to access the named pipe server - using LOW_INTEGRITY_SDDL_SACL ("S:(ML;;NW;;;LW)"). Within the code, we were using

How to work with event.detail in Internet Explorer 11?

∥☆過路亽.° 提交于 2020-01-24 22:14:08
问题 I have function preventing selecting element, under other clicking element. Fumction works fine in chrome, but in IE11, e.detail doesn`t work. What use instead? How to reorganize function code? function xorClick(e) { if (pendingClick) { clearTimeout(pendingClick); pendingClick = 0; } switch (e.detail) { case 1: pendingClick = setTimeout(function() { var parent = e.target.closest('.ui-treenode-content'); parent.click(); }, 180); break; case 2: var parent = e.target.closest('.ui-treenode

max-width not functioning correctly in flex-box on IE11

为君一笑 提交于 2020-01-24 21:53:16
问题 In IE11, if you define a width for a flex-box and a child img element has a max-width of 100%, it will not respect the max-width . Has anyone found a solution for this? This works in IE10, Chrome, and Firefox but breaks for IE11: http://jsfiddle.net/3ky60heq/ .container { display: -ms-flexbox; display: -webkit-flex; display: flex; width: 500px; height: 125px; } .image1 { width: 100%; } .image2, .image3 { max-width: 100%; } <div class='container'> <img class='image1' src="https://clagnut.com

External CSS not working in IE11

北城余情 提交于 2020-01-24 09:23:11
问题 I have wrote my own embed-server, which can generate response to web browsers. The generated "main page" is like the following html. <!DOCTYPE html> <html><head><link rel="stylesheet" href="styles.css"><title>ABC Inc. Web Configurator</title></head><body> <nav><p>[<b>Home</b>]</p></nav> <table> <tr><td><a href=Config>Config</a></td></tr> <tr><td><a href=Logger>Logger</a></td></tr> </table> <footer>Web Configurator © ABC Inc. 2014 - 2015</footer></body></html> And the generated CSS file is

Why does removing woff2 in @font-face solve IE11 problems

会有一股神秘感。 提交于 2020-01-24 05:07:12
问题 I had troubles with a @font-face these days. My font was not displaying in IE11, but in all others. Turned out that removing the "woff2" font solved my problems and the font displayed normally. My question now is: Why could that be the solution? What is going on in IE11s mind, that removing a simple "woff2" tag could be the answer? I mean, normally I read about .htaccess files and other things which are really not easy to find out... Does IE11 try to load the woff2 first? 回答1: IE 11 use woff

Detect when IE11, with its built-in memory leak, runs out of memory (1.5GB recyclable pool)

本小妞迷上赌 提交于 2020-01-22 20:06:28
问题 IE11 has a well-documented iframe memory leak. In a SPA, if you are using iframes the memory will grow to about 1.5GB after which time it will slow down until a crash. My task is to detect when the browser is about to crash and restart the page soon enough. The application is Vue.JS that is embedded inside ASP.NET MVC. What kind of memory/performance detection is available in browser in IE11? Some kind of used memory measure library? Some kind of performance measuring library? Counting

IE10 flexbox widths include padding, causing overflow. box-sizing: border-box doesn't fix

有些话、适合烂在心里 提交于 2020-01-22 06:41:56
问题 The LHS flex child in this example has 1em padding, and it will cause RHS to overflow the parent: <div style="display: -ms-flexbox; box-sizing: border-box; width: 200px; border: 5px solid black"> <div style="padding: 1em; -ms-flex-positive: 0; -ms-flex-negative: 0; -ms-flex-preferred-size: 33%; background-color: blue; box-sizing: border-box"> LHS </div> <div style="-ms-flex-positive: 0; -ms-flex-negative: 0; -ms-flex-preferred-size: 67%; background-color: red; box-sizing: border-box"> RHS <

CSS Opacity not working in IE11

ⅰ亾dé卋堺 提交于 2020-01-21 04:11:06
问题 I'm trying to make the background-color of a tr opaque with this CSS: .faded{ background-color: red; height: 100px; opacity: 0.4; filter: alpha(opacity=50); } Here is my test HTML: <table> <tr class="faded"> <td><div>testtesttesttestt</div></td> <td><div>testtsttesttesttt</div></td> </tr> </table> Everything works fine in IE9,10 FF24 Chrome 31+, but not in IE11. Please keep in mind that I don't care about the content of the table rows, only the background opacity. Screenshots and Jsfiddle

Equivalent of arrow functions for IE

此生再无相见时 提交于 2020-01-15 06:55:18
问题 I wrote a program that works well in Google Chrome, but I just realized that it is having problems in IE. IE states that this is due to a syntax error given by the use of arrow functions since they are not supported in the latest IE. Can anyone tell me how to change my code to be able to run it on IE? function removeRow(a, ref, plt, pcs, loc, trk, din) { var pro; swal("Enter the shipment's tracking information:", { content: "input", buttons: { cancel: true, roll: { text: "Don't have it",

border-image transparency bug in IE11

微笑、不失礼 提交于 2020-01-15 05:44:28
问题 I'm using the border-image property on elements with an image file set as the border background. The border image file has transparency and it works as I want it in Chrome and Firefox. However, in IE11, the transparent area "overwrites" the background image under the border. Is there a way to fix it? I'm using the same border image on elements with various background images so I'd rather not create separate non-transparent border images for each one. This is what I have so far: body {