internet-explorer-11

GZip Compression Not working in internet explorer 11, but working fine in Chrome & Firefox

荒凉一梦 提交于 2019-12-08 14:58:16
问题 Co's, I enabled GZip compression in my Spring Boot Embedded Tomcat using CompressingFilter (https://github.com/ziplet/ziplet) and FilterRegistrationBean from Spring. It is working fine in Chrome & Firefox . I am getting Content-Encoding = gzip in response headers Transferred JSON data size is reduced from 6.5MB to 1.2 MB - Great :-) But, the same code is NOT working in Internet Explorer 11.0.9600.18097. In Internet Explorer, Content-Encoding = gzip is missing in response headers Transferred

SVG issues in ie11

大城市里の小女人 提交于 2019-12-08 14:45:01
问题 I have a div that has it's height set to 320 pixels, then it's child is set to 100% width of that. The child of that is a SVG file which I set the width to 200% of the container. In chrome and firefox that works fine, I get a nice image like this: The HTML looks like this: <div class="kit-template ng-isolate-scope front"> <div class="svg-document ng-scope"> <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 259.5 131.4

Internet Explorer 11 renders page strangely until reszing?

隐身守侯 提交于 2019-12-08 14:14:23
Just started testing IE11 with our internal websites and found this error occurs (see link below) but if you resize the window it renders the page correctly. Only happens on some pages and I can't see why? Has anyone seen this before? http://i151.photobucket.com/albums/s135/tonyyeb/ie11error_zps83d87df7.png EDIT: Just to clarify the page when rendered correctly looks NOTHING like this! EDIT2: We think it maybe showing the page at a VERY high zoom level. Do you have code that is specific to different browsers? If so then note that the User-Agent string of IE11 is very different than the user

Angular on a svg - $sce.trustAsHtml inside svg does not work in safari and ie

守給你的承諾、 提交于 2019-12-08 10:45:54
问题 I am new to angular and svg and i can't seem to get past this problem. I am using $sce.trustAsHtml on a <g> element. My code works fine in Chrome and firefox but for some reason it fails in appending the variable in Safari and IE11. Any ideas why? P.S. I have to find a way to link the content to that <g> because the svg also has some dynamic content with ng-repeat (that part woks fine) In html: <svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" version="1.1" x=

SSRS2008 ASP.NET ServerReport fails on IE11 with OEM UserAgent

可紊 提交于 2019-12-08 10:04:52
问题 I am rendering a SSRS ServerReport to PDF and in the ReportViewer WebForm Control in a ASP.NET 3.5 Application with a SQL Server Report Service 2008. Some people using Internet Explorer 11 reported that they cannot open generated PDF files or see anything in the viewer. The rendering fails with this error: library!ReportServer_0-403!7c8!01/02/2014-11:07:37:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException: , Microsoft.ReportingServices.Diagnostics

Is IE10(+) identical on Windows 7 and Windows 8?

我们两清 提交于 2019-12-08 08:59:24
问题 I am developing on OS X. For testing I am using VirtualBox with windows VMs from http://www.modern.ie/en-us/virtualization-tools#downloads When testing my web applications, should I be testing in IE10 on both Win7 and Win8, or can I safely assume that IE10 behaves identically on both platforms and only test on Win7? And the same question goes for IE11. 回答1: No, they are not identical, but they should be the same for the common features that both support. IE10 and 11 on Windows 8 and 8.1

Webdriver 3.14 IE11: session lost when click link/button that opens a window/popup

爷,独闯天下 提交于 2019-12-08 08:37:18
My Internet Explorer Options: var optionsIE = new InternetExplorerOptions(); optionsIE.IntroduceInstabilityByIgnoringProtectedModeSettings = true; optionsIE.EnsureCleanSession = true; string IE_DRIVER_PATH = SolutionDirectory + @"\\..\\packages\\Selenium.WebDriver.IEDriver.3.14.0\\driver\\"; InternetExplorerDriverService service = InternetExplorerDriverService.CreateDefaultService(IE_DRIVER_PATH); service.Port = port; driver = new InternetExplorerDriver(service, optionsIE); When click on link/button that opens an modal popUp, login e password are required on new window (no normal): while I

Sprite animation wobbly / jumping in IE11

a 夏天 提交于 2019-12-08 06:44:42
问题 I built a semi-transparent sprite png which can be found at https://www.srf.ch/static/srf-data/test_sprite.png It is a 17280px high and 910px wide png (30 * 576 = 17280) - everything seems correct. I now want to loop through each frame (it should be a map of slightly moving points) with CSS3 keyframes using background-position . I adapted an example from https://builtvisible.com/3-logical-alternatives-to-animated-gifs/ (see http://codepen.io/tombennet/pen/oxmaLd) I can reproduce that example,

Internet explorer & Angular 6 ERROR Error: Uncaught (in promise): Error: Loading chunk

佐手、 提交于 2019-12-08 05:04:20
问题 I am getting issue while using angular 6 and IE 11, app is working fine in chrome & another browser but in internet explorer, i am getting this ERROR Error: Uncaught (in promise): Error: Loading chunk default~app-xxxxx~eb5ba6d4 failed. (missing: http://localhost:4200/default~app-xxxx.js) Error: Loading chunk default~app-xxxx~eb5ba6d4 failed. (missing: http://localhost:4200/default~app-xxxx~eb5ba6d4.js) Project details Angular CLI: 6.2.3 Node: 8.12.0 OS: win32 x64 Angular: ... Package Version

IE 11 :after background size not working

放肆的年华 提交于 2019-12-08 04:58:39
问题 I added a background-image inside the pseudo :after ::after { content: ''; display: block; position: absolute; right: -2.5rem; bottom: -1.5rem; height: 9.5rem; width: 9.5rem; background-image: url('../img/icons/icon_logo.svg'); background-repeat: no-repeat; // background-size: 100% auto; background-size: cover; } But the image is way bigger than the actual size of the box. Any idea how to solve this? (Working fine in webkit browsers) !!!Additional Information: I tried other svg and it works