What steps will reproduce the problem?
1. Using page with ie9.js inside an iframe
What is the expected output? What do you see instead?
No JavaScript errors, and script is successful. I see JavaScript error
"Unspecified Error", and script does not complete.
Code that produces error:
if (element == document.activeElement) {
Focus.register(instance)
}
What version of the product are you using? On what operating system?
ie9.js, on IE7 and IE8 on Windows XP.
Please provide any additional information below.
Fixed (may not be best solution) by adding code:
if(typeof document.activeElement != 'unknown'){
if (element == document.activeElement) {
Focus.register(instance)
}
}
Original issue reported on code.google.com by jeff.bh...@gmail.com on 19 Mar 2012 at 6:15
Original issue reported on code.google.com by
jeff.bh...@gmail.com
on 19 Mar 2012 at 6:15