Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it worth testing the same version of IE on different versions of Windows?

I'm putting together some virtual machines to test different browsers and I'm wondering if there is any compelling reason to be able to test the same version of IE on different versions of Windows. (i.e. IE8 on XP and Vista) I'm mostly talking about testing CSS to make sure it "looks right" across browsers, but if there were major differences in JavaScript I would want to know that too.

Are different versions of IE "generally the same" on different versions of Windows? Thanks!

like image 933
Don Zacharias Avatar asked Jun 11 '09 20:06

Don Zacharias


People also ask

Can I still use Internet Explorer after 2022?

After 25+ years of helping people use and experience the web, Internet Explorer (IE) is officially retired and out of support as of today, June 15, 2022. To many millions of you, thank you for using Internet Explorer as your gateway to the internet.

Will Internet Explorer be removed from Windows 11?

The Internet Explorer 11 desktop application will progressively redirect to the faster, more secure Microsoft Edge browser, and will ultimately be disabled via Windows Update.

How do I see older versions of Internet Explorer?

IETester IETester is a software that is free to download. It allows you to run your web pages across multiple versions of Internet Explorer, even as low as IE5. 5 It also allows the user to check how the website performs on different browser versions in Windows 10, 7, Vista and XP.


2 Answers

The time and cost of testing different versions of windows would be better spent in other places. This would be one of the last things I would look at when looking for rendering issues.

like image 128
Matthew Vines Avatar answered Oct 02 '22 14:10

Matthew Vines


I agree with both people who have answered previously, despite the fact that they disagree with one another.

In general, IE will act very largely the same across all versions of windows. However, there can be (and are) some occassional subtle differences. Whether these are important are not is up to you.

For the great majority of websites, I wouldn't bother with it. But for very precise web applications where you're using something like complex javascript, or if you require layout to be correct to the pixel for some reason, then it could be worth it. I'm thinking of cases where people are generating os-type applications in JavaScript where the DOM is really being pushed around, and where exact layout and flawless event-handling is critical.

like image 25
Beska Avatar answered Oct 02 '22 13:10

Beska