Eklof
2009-09-30 15:48:01 UTC
I had to reinstall Visual Studio 2008. Now I get loads of errors when I run
IE7
-----------------------------------------------------------------------------------------
Visual Studio Just In Time Debugger
An unhandled exception('Object doesn't support this property or method')
occurred in iexplore.exe[4368]
-----------------------------------
Code that shows up in the debugger:
-------------------------------------------
function ParseDoc(doc)
{
var aRules = GatherRulesFromDoc(doc);
collSelectors = parser.Parse(aRules);
// Set quirks mode if necessary
if("BackCompat" == doc.compatMode)
{
for(var i = 0; i < collSelectors.Count; i++)
{
collSelectors.item(i).SetQuirksMode(true); <--> Line in error
}
}
}
IE7
-----------------------------------------------------------------------------------------
Visual Studio Just In Time Debugger
An unhandled exception('Object doesn't support this property or method')
occurred in iexplore.exe[4368]
-----------------------------------
Code that shows up in the debugger:
-------------------------------------------
function ParseDoc(doc)
{
var aRules = GatherRulesFromDoc(doc);
collSelectors = parser.Parse(aRules);
// Set quirks mode if necessary
if("BackCompat" == doc.compatMode)
{
for(var i = 0; i < collSelectors.Count; i++)
{
collSelectors.item(i).SetQuirksMode(true); <--> Line in error
}
}
}