internet-explorer-11

background size cover IE11 not covering full area

纵饮孤独 提交于 2019-12-01 12:39:23
I'm going bonkers. IE11 refuses to fill the entire area of a DIV with a background image, even though I've set the background-size property to cover. Consider the following example: CSS: .bg { width: 100%; min-height: 220px; background: url("bg.jpg") center top no-repeat; background-attachment: fixed; background-size: cover; } HTML: <div class="bg">bla</div> <div class="bg">blabla<br />blabla</div> Chrome, Firefox, Safari, Opera all do what I expect to happen: the background image, bg.jpg, is always covering the full visible area of the DIVs, no matter what the proportions of the browser

IE11 quirks mode under Iframe - javascript errors

和自甴很熟 提交于 2019-12-01 11:37:26
I am reading and looking for answer for days and couldn't found one, hopefully this thread will bring salvation :) In my company we have a web app that is working on IE8. We are trying to migrate to IE11. We almost there but, We have an old module that is written in an old framework that is hosted in an iframe and running in quirks mode(define with meta http-equiv="X-UA-Compatible" content="IE=emulate7" or IE=5, I tried both). As long as the parent/main window is rendered in IE8 document mode (via x-ua-compatible meta tag) or in enterprise mode, the iframe works fine. But as soon as I change

Cannot run protractor on Internet explorer 11

我的梦境 提交于 2019-12-01 10:27:42
I'm trying to run my jasmine E2E tests on IE11 but with no luck or whatsoever. I'm on Windows 8.1. My config: exports.config = { directConnect: true, // Capabilities to be passed to the webdriver instance. capabilities: { 'browserName': 'chrome' }, // run in multiple browsers multiCapabilities:[ // { // 'browserName': 'chrome' // }, // { // 'browserName': 'firefox' // }, { 'browserName': 'internet explorer', } ], // Spec patterns are relative to the current working directly when // protractor is called. specs: ['./**/*js'], // Options to be passed to Jasmine-node. jasmineNodeOpts: { showColors

WebDriver test not running on IE11

烈酒焚心 提交于 2019-12-01 09:08:28
When I run my WebDriver test they are not working at all. What I've done so far: 1) I've updated my registry key to include FEATURE_BFCACHE 2) Protected mode settings are the same for all zones 3) Enhanced Protected Mode is disabled 4) I've also tried with setting IEDriverServer in my PATH Test are working fine on Chrome, Firefox etc. but when I'm running on IE11 I get: Caused by: org.openqa.selenium.NoSuchElementException: Unable to find element with css selector == a[href='#pricing'] (WARNING: The server did not provide any stacktrace information) Command duration or timeout: 270

Unable to open IE11 driver instance using Selenium WebDriver with Java

陌路散爱 提交于 2019-12-01 08:41:10
System.setProperty("webdriver.ie.driver","C:\\Users\\IEDriverServer_Win32_2.45.0\\IEDriverServer.exe"); WebDriver driver = new InternetExplorerDriver(); driver.get("http://xxx"); Shows error while executing above code: Exception in thread "main" org.openqa.selenium.remote.SessionNotFoundException: Unexpected error launching Internet Explorer. Protected Mode settings are not the same for all zones. Enable Protected Mode must be set to the same value (enabled or disabled) for all zones. (WARNING: The server did not provide any stacktrace information) Command duration or timeout: 1.33 seconds Can

Cannot run protractor on Internet explorer 11

我只是一个虾纸丫 提交于 2019-12-01 07:49:59
问题 I'm trying to run my jasmine E2E tests on IE11 but with no luck or whatsoever. I'm on Windows 8.1. My config: exports.config = { directConnect: true, // Capabilities to be passed to the webdriver instance. capabilities: { 'browserName': 'chrome' }, // run in multiple browsers multiCapabilities:[ // { // 'browserName': 'chrome' // }, // { // 'browserName': 'firefox' // }, { 'browserName': 'internet explorer', } ], // Spec patterns are relative to the current working directly when // protractor

WebDriver test not running on IE11

帅比萌擦擦* 提交于 2019-12-01 07:47:30
问题 When I run my WebDriver test they are not working at all. What I've done so far: 1) I've updated my registry key to include FEATURE_BFCACHE 2) Protected mode settings are the same for all zones 3) Enhanced Protected Mode is disabled 4) I've also tried with setting IEDriverServer in my PATH Test are working fine on Chrome, Firefox etc. but when I'm running on IE11 I get: Caused by: org.openqa.selenium.NoSuchElementException: Unable to find element with css selector == a[href='#pricing']

Public key encryption in Internet Explorer 11

早过忘川 提交于 2019-12-01 07:39:24
问题 I am trying to implement public key encryption using JavaScript for IE11 with the following code: <script> var data = new Uint8Array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]); var crypto = window.crypto || window.msCrypto; var cryptoSubtle = crypto.subtle; var genOp = cryptoSubtle.generateKey( { name: "RSA-OAEP", modulusLength: 2048, publicExponent: new Uint8Array([0x01, 0x00, 0x01]), hash: { name: "SHA-256" }, }, true, ["encrypt", "decrypt"] ); genOp.onerror = function (e) { console.error(e); }; genOp

IE11 quirks mode under Iframe - javascript errors

僤鯓⒐⒋嵵緔 提交于 2019-12-01 07:36:44
问题 I am reading and looking for answer for days and couldn't found one, hopefully this thread will bring salvation :) In my company we have a web app that is working on IE8. We are trying to migrate to IE11. We almost there but, We have an old module that is written in an old framework that is hosted in an iframe and running in quirks mode(define with meta http-equiv="X-UA-Compatible" content="IE=emulate7" or IE=5, I tried both). As long as the parent/main window is rendered in IE8 document mode

Site Doesn't Display Correctly in IE11

随声附和 提交于 2019-12-01 07:31:22
I have a website that displays correctly in IE7, IE8, IE9, IE10, all PC and Mac versions of Firefox and Chrome, Opera, and Safari. But, in IE11, it displays part of the header and javascript, but none of the html. Any ideas? http://www.ighome.com The Network-tab in IE11 Developer Tools shows that there are no requests for your stylesheet, and your <head> content is rendered inline. This indicates that IE11 does not consider the content to be html (and won't parse it as such). You're sending your html with a content-type indicating that it's xml, but with a html doctype. I would try changing