internet-explorer-11

Babel transpiled code does not support static methods in IE11

安稳与你 提交于 2019-12-23 04:49:08
问题 Babel transpiled js works fine, but on IE11 the static inheritance seems not to work. Any idea? class SuperClass { constructor () {} static test () {} } class Sub extends SuperClass { constructor () { super(); } } Sub.test(); //Results in: "Object doesn't support property or method 'test' 回答1: It seems that Babel does not handle the case, in fact in the inherits helper, if the Object.setPrototypeOf method is undefined , Babel simply attaches the super class to the __proto__ key. I have

EmulateIE7 mode set in IIS7/web.config does not show page in proper mode in IE11

Deadly 提交于 2019-12-23 04:43:31
问题 I have a web site and IE8, IE9, and IE10 always worked great using IE=EmulateIE7 mode in HTTP header response from IIS/7, but this mode does not seem to render properly in IE11. The page does not render or behave properly in IE11, although it works fine in EmulateIE7 mode in IE8 through IE10. If I open F12 tools on IE11, I see the document mode is "7." The only way to make IE11 working properly is adding manualy the domain to compatibility view mode, then it works great; but we cannot ask all

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

荒凉一梦 提交于 2019-12-23 03:23:15
问题 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

Internet Explorer 11 renders page strangely until reszing?

守給你的承諾、 提交于 2019-12-23 02:44:09
问题 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. 回答1: Do you have code that is specific

Print PDF Report in IE 11

我只是一个虾纸丫 提交于 2019-12-22 10:39:04
问题 As the tile suggest, I am trying to print a PDF report specifically on IE 11. The following snippet of code works will in chrome, but when it come to IE11, all hell breaks loose; nothing works. To give you a background, I am developing Angular 5 reporting application. Here the user can view, download and print the report. I was able to achieve all the above functionalities except for printing on IE 11! const iframe = document.createElement('iframe'); iframe.style.display = 'none'; iframe.src

IndexSizeError on drawImage on IE and Edge

点点圈 提交于 2019-12-22 08:15:01
问题 I am finding that a certain code fails in Internet Explorer and Edge, but seems to work flawlessly in Chrome and Firefox: var image = document.getElementById("myImage"); var canvas = document.getElementById("myCanvas"); var context = canvas.getContext("2d"); context.drawImage(image, 1, 0, 499, 278, 0, 0, 749, 417); img { width: 300px; height: 200px; } <img id="myImage" src="https://image.ibb.co/bsANfm/emptyphoto.png" /> <canvas id="myCanvas" width="600" height="400"></canvas> For some reason,

Spellcheck in web browser control not working under IE11 emulation

让人想犯罪 __ 提交于 2019-12-22 08:07:12
问题 I am trying to have spellcheck work in a Winforms web browser control. This is my current C# code: try { String appname = Process.GetCurrentProcess().ProcessName + ".exe"; RegistryKey key = Registry.LocalMachine.OpenSubKey("Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_BROWSER_EMULATION", RegistryKeyPermissionCheck.ReadWriteSubTree); object ieVal = key.GetValue(appname, null); MessageBox.Show(ieVal.ToString()); if (ieVal == null || (int)ieVal != 11001) { key.SetValue

Does IE11 support css 3d transforms fully (preserve-3d)

你。 提交于 2019-12-22 06:08:21
问题 I am making a css 3d transforms web app, and I would like IE11 to be supported if possible. I know IE10 does not support the preserve-3d value for the transform-style css attribute, but I'm not sure about IE11. I have read some stuff that says that IE11 should support it, but the examples I tried didn't work properly (IE11 on Windows 8.1 here). So, does IE11 fully support css 3d transforms and preserve-3d ? 回答1: Microsoft are adding support for transform-style: preserve-3d . It is supported

Does IE11 support css 3d transforms fully (preserve-3d)

泪湿孤枕 提交于 2019-12-22 06:07:04
问题 I am making a css 3d transforms web app, and I would like IE11 to be supported if possible. I know IE10 does not support the preserve-3d value for the transform-style css attribute, but I'm not sure about IE11. I have read some stuff that says that IE11 should support it, but the examples I tried didn't work properly (IE11 on Windows 8.1 here). So, does IE11 fully support css 3d transforms and preserve-3d ? 回答1: Microsoft are adding support for transform-style: preserve-3d . It is supported

javascript Ajax SCRIPT1003: Expected ':' in IE 11

可紊 提交于 2019-12-22 02:51:58
问题 var url="tabla.php"; $.ajax({ type: "POST", url:url, data:{place,names,repor}, success: function(datos){ $('#tabla').html(datos); } This code works in Chrome but in IE 11 returns the error SCRIPT1003: Expected ':' on line 5. I'd really appreciate any help. Note: place and names are arrays that are previously defined, and repor is also a previously defined variable. 回答1: Usually objects in javascript are initialized as key value pairs, so data should probably be initialized like data:{ place :