What tools can I use to analyze Internet Explorer’s network capture logs?
Fiddler does support importing HTTP Archive XML (exported from IE9 Developer Tools Network Tab) as per its blog
Fiddler does support importing HTTP Archive XML (exported from IE9 Developer Tools Network Tab) as per its blog
I have found the same thing on Internet Explorer 8 when attempting to click links using .Click() – even though I can see Selenium clicking on the link. From my experience it appears that if the browser does not have focus then the initial click doesn’t work. A workaround to this is to send a … Read more
Yes, but not how you would imagine. According to caniuse (a very good resource) there is no support and no polyfill available for adding text-shadow support to IE9. However, IE has their own proprietary text shadow (detailed here). Example implementation, taken from their website (works in IE5.5 through IE9): p.shadow { filter: progid:DXImageTransform.Microsoft.Shadow(color=#0000FF,direction=45); } For … Read more
There’s an IE polyfill for the CustomEvent constructor at MDN. Adding CustomEvent to IE and using that instead works. (function () { if ( typeof window.CustomEvent === “function” ) return false; //If not IE function CustomEvent ( event, params ) { params = params || { bubbles: false, cancelable: false, detail: undefined }; var evt … Read more
I have also been working with this problem. Another “solution” is to add a div around the item that has the gradient and rounded corners. Make that div the same height, width, and rounded corner values. Set the overflow to hidden. This is basically just a mask, but it works for me. HTML: <div class=”mask … Read more