internet-explorer-9

How to debug division by zero exception in Internet Explorer?

好久不见. 提交于 2019-12-06 19:25:30
问题 i am hosting Internet Explorer in a Windows application. i can scroll down to the bottom of the document. When i then try to scroll back up i get a division by zero exception : When i scroll using Page Up the crash appears to happen at the call to - IOleInPlaceActiveObject:TranslateAccelerator When i scroll using the mouse the crash happens during the call to DispatchMessage Either way, the crash is happening in Internet Explorer. The stack trace shown by Delphi at the time of the exception:

removeFilter() function not working in IE9

跟風遠走 提交于 2019-12-06 19:20:33
I have a removeFilter() javascript function in my application and it is not getting invoked for some reason and throwing the following error ONLY in IE9. I initially thought it be some typo in my invocation code but when i simple change the name to something other than removeFilter() (say for example applyFilter()) the function seems to be working fine. I simple tried printing some alerts within the function and the function was not invoked. Please note the function works fine in other IE 7, IE8. ERRROR: SCRIPT65535: Argument not optional See http://www.jabcreations.com/blog/internet-explorer

Error adding SCRIPTITEM_CODEONLY symbol using IE9 JS engine (Chakra)

回眸只為那壹抹淺笑 提交于 2019-12-06 17:48:25
We've been using active scripting in our browser extension (BHO) for a while with the old JScript engine (CLSID_JScript), and we recently decided to support the new IE9 script engine (Chakra) as well. One thing we do is add symbols to the engine using AddNamedItem with the SCRIPTITEM_CODEONLY option to create our own modules (namespaces). Unfortunately, we haven't been able to get this to work with Chakra. Even the most trivial example where we add a symbol and immediately retrieve its script dispatch yields an E_OUTOFMEMORY error. if (SUCCEEDED(hr)) { hr = scriptEngine->AddNamedItem(L"test",

Why my site doesn't look good on other browsers? [closed]

与世无争的帅哥 提交于 2019-12-06 16:29:05
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 6 years ago . I'm now developing my site and was considering FireFox as the main testing zone, but while I tested it on Chrome and IE9 the results were different. On Chrome one of the layers doesn't sit in its place once I

How to show PDF in Internet Explorer 9 using base64?

雨燕双飞 提交于 2019-12-06 16:15:07
问题 I am trying to show a PDF in IE9. I don't want the user to know any URL file info. So I am encoding the PDF file into BASE64 and use the tag: <iframe src="data:application/pdf;base64,JVBER..." width="500" height="500"></iframe> It works fine using the latest versions of Chrome and Firefox... but not with IE9. Tips? 回答1: This is not directly possible in this way-- Internet Explorer does not permit use of DATA URIs as the source of frames. You may be able to use an OBJECT tag with the PDF

@font-face IE9 font-weight doesn't work

纵然是瞬间 提交于 2019-12-06 15:57:55
问题 I'ver tried to embed a font with css @font-face. And i want use it as a bold font. But IE 9 doesn't display the font bold. CSS @font-face { font-family: Dauphin; src: url('dauphin.woff'), url('dauphin.ttf'), url('dauphin.eot'), url('dauphin.svg') ; /* IE9 */ font-weight: normal; } .p { font-family: Dauphin; font-weight: 900; } 回答1: IE doesn't support using a different font-weight than was specified in a @font-face rule. A set of font files for each font variant Typically, an embedded font

<ul> with vertical scroll jumps to top in IE9

天涯浪子 提交于 2019-12-06 15:22:28
I have a tall <ul> element that is used as a popover menu. The overflow-y is set to auto, and I can scroll up and down to see the <li> elements. In IE9, when I scroll the <ul> element down and then mouse over any of the <li> elements, the scrollbar jumps straight back to the top. This makes it impossible to select any items at the bottom of a long list. Neither Firefox nor Chrome exhibit this behavior. Is this a known IE issue? 来源: https://stackoverflow.com/questions/19799835/ul-with-vertical-scroll-jumps-to-top-in-ie9

BHO for capturing user clicks works fine in Windows other than Windows 7 Home Premium with IE9

自作多情 提交于 2019-12-06 14:09:50
问题 I have written a BHO for IE 8 and IE9 that binds and capture certain elements(e.g INPUT element) from a user's page on my website and instead of performing the click event, performs custom post processing and presents user with different options based the data attached to each div/input element on which user has clicked. Now the problem is: it works fine in the following configurations: Windows XP , IE 8 working Windows 7 Ultimate x86 , IE 8 - working Windows 7 Ultimate x64 , IE 8 - working

Difference between quirks mode and standards mode JavaScript

[亡魂溺海] 提交于 2019-12-06 13:33:50
Are there any differences in the JavaScript of these two modes in IE 9? If yes, what are they? wiky IE9 standards document mode supports ECMAScript, Fifth Edition features , so the method such as forEach , every , map of Array and defineProperty , keys of Object are support well. more about IE9 standards document mode supports enhanced DOM programmability. (may not what you're interested in, but it does so). more about IE9 removes some of the key differences between IE8 JavaScript implementation and the ECMAScript, Third Edition Specification . Quirks mode supports the JavaScript functionality

Iconic fonts displayed partially in IE9-10

好久不见. 提交于 2019-12-06 13:05:40
We're having an issue with IE rendering only part of the characters in a font. This only happens in production and the same font file works great locally. It would be great if someone could give me a hand on this! Thanks! P.S. The font is generated by IcoMoon You can see it yourself on the preview page here . UPDATE: Disabling Amazon Cloundfront CDN helped me avoid this issue. Although it would be really nice if we could eliminate it once and for all. 来源: https://stackoverflow.com/questions/17150180/iconic-fonts-displayed-partially-in-ie9-10