internet-explorer-9

Border-radius bug on <a> in IE9

白昼怎懂夜的黑 提交于 2019-12-03 10:56:30
Seeing that <div> elements render border/border-radius correctly, but any <a> or <button> that has a background, border and border-radius set shows the background color or image as a square, and only the border is round. Tried setting <a> & <button> to display: block or display: inline-block but that didn't work. Is there a known workaround? Here is a link to the computed style from Webkit: https://gist.github.com/773719 Here is the computed style from IE9 dev tools: Update Using the filter:; or -ms-filter:; property to have gradients in IE make the background break out of the defined border

Why is there a vertical scrollbar on my svg at 100%?

青春壹個敷衍的年華 提交于 2019-12-03 09:59:00
问题 Can somebody explain why I see a vertical scrollbar in Chrome and IE9 with the following markup: <!DOCTYPE html> <html> <head> <title>Fullscreen SVG</title> <style> html,body { margin: 0px; padding: 0px; width: 100%; height: 100%; } .fullscreen { width: 100%; height: 100%; } </style> </head> <body> <svg class="fullscreen"></svg> </body> </html> If I replace the svg with a div it works perfectly. But if I put the svg inside that div, the layout is broken again: <div class="fullscreen"> <svg><

IE9 only _sometimes_ ignores <base href>

佐手、 提交于 2019-12-03 09:08:46
We are developing a site which makes heavy use of <base href> (which is typical for TYPO3 sites). The site is developed in a sub directory and will later be relocated to the top directory so we can not easily remove <base href> . Our client told us that sometimes when she browses the new pages she gets the page content without layout applied. We debugged this: It happens only in IE9. Looking at the logs we find that when the error happens, IE9 tries to load CSS, JS and all images consequently from the wrong location: relative to the current URL, not relative to the BASE HREF... Further

Javascript dispatchEvent click is not working in IE9 and IE10

岁酱吖の 提交于 2019-12-03 08:44:32
I'm trying to simulate mouse events like click, mouseover etc on app build in ExtJs. I'm using below code to simulate click, function triggerEvent(element, eventName) { if (document.createEvent) { var evt = document.createEvent('MouseEvents'); evt.initEvent(eventName, true, true); return element.dispatchEvent(evt); } } var btn = document.getElementById("loginButton"); triggerEvent(btn, "click"); This works fine on chrome and firefox but never works on IE9 and IE10. If I use btn.fireEvent('onlclick') then it works fine in IE9 (not checked in IE10). document.createEvent is supported in IE9 &

JPlayer issue in IE9

北城以北 提交于 2019-12-03 08:33:01
i think there is a problem in jquery.jplayer.min.js file which one i am using. My jplayer is not working in only IE9. its working in all other browser. In this thread Mark P. notes that you must have MIME types set properly. Try putting this in your .htaccess: AddType video/mp4 mp4 AddType video/mp4 m4v More here: http://www.jplayer.org/latest/developer-guide/#jPlayer-server-response The current major release (2.0.0) does not support IE9 , but support is being added as of version 2.0.8 (github) . Put this line of code at the very beginning of your document. <!DOCTYPE html> It forces IE9 to

What tools can I use to analyze Internet Explorer's network capture logs?

流过昼夜 提交于 2019-12-03 08:11:06
问题 I'm using the F12 developer tools built into Internet Explorer 9 to capture network traffic on a site. This information can be saved to an XML (default) or CSV file. The XML file seems to contain much more information, but I'm having a hard time finding any applications that will read these. Using Internet Explorer Developer Tools Network Capture states: The Save button writes the current HTTP session to an XML file by using the HTTP Archive schema or a .CSV file. After saving the session,

How to set IE document mode?

隐身守侯 提交于 2019-12-03 07:19:49
In IE9 my browser has set: F10 -> tools -> compatibility views setting -> added 192.168.10.227 therefore when I try to serve file, the browser mode is 9 compat view, the document mode is IE7 standard. My question is, how do I make the document mode IE9 instead of IE7? I tried: <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9"> <meta http-equiv="X-UA-Compatible" content="IE=9" /> but neither is working. here is my document <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"

Table with 100% height row and Internet Explorer 9

落花浮王杯 提交于 2019-12-03 06:17:54
I have the following example: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Example</title> </head> <BODY> <DIV style="height:150px;background-color:#AAAAFF;overflow:auto"> <TABLE style="height:100%;width:300px"> <TR> <TD style="background-color:orange">Text with an unknown height (22px here)</TD> </TR> <TR style="height:100%"> <TD style="height:100%;background-color:yellow"> <TEXTAREA style=

How to access Event.target in IE9?

一曲冷凌霜 提交于 2019-12-03 05:57:37
The HTML DOM object model defines an Event object with a target property . Looking at MSDN, Microsoft documents a target property . They also document srcElement as an alias of target from earlier versions of Internet Explorer: The target property is similar to srcElement in Windows Internet Explorer 8 and earlier versions. So here i am in Internet Explorer, sitting at a click breakpoint: <div class="day" onclick="divClick(this)"> function divClick(sender) { var divCell = sender; And at the F12 Tools console i can ask for the global event object: >> event { actionURL : "", altKey : false,

AngularJS Internet Explorer 9

折月煮酒 提交于 2019-12-03 05:14:39
I have small trouble with angularjs and internet explorer9. It look like, that angularjs is not loading correctly. If I starting ie with my application, nothing will work, but if I start the development tools of ie9 and refresh the page, my application will work and everything is loading and ready to use. I have no idea, what happen and how to solve this issue. I using angularJs Version 1.1.5. Big thanks! Update & Resolved My problem was, that I had everywhere console.log (..). On FF or Chrome, everything works, but with II9, something happens, that ie stop after the statement console.log(...)