How does Google Chrome affect web application product owners?

If my application has been tested in Firefox 3, Safari 3 and IE 7 will require additional testing for Chrome?

If there are areas that need further testing, then are there any online guides that I could share with my designers and developers?

At what point will it be considered that Chrome will have a sufficient market share, which will be considered as the main browser?

+6
design cross-browser google-chrome testing
source share
8 answers

If it works fine in Safari, it will probably work with Chrome as well. The only difference is the JavaScript mechanism, but I have yet to see a real example of some legitimate JavaScript code that does not work in Chrome.

Personally, I test my stuff on Chrome because I use Chrome extensively for development. It’s good practice to test your pages with at least one WebKit (or KHTML) -based browser.

+13
source share

Chrome uses the WebKit rendering engine, which is also used by Safari and some other small browsers. In general, both Chrome and Safari are gaining market share, this is certainly a browser for testing (you really only need to check it). It is very standards compliant and constantly updated to keep up with new CSS drafts.

Webkits main site - http://webkit.org/

The browser market share http://www.w3schools.com/browsers/browsers_stats.asp and http://en.wikipedia.org/wiki/Usage_share_of_web_browsers are good places to find the market share of browsers, although they show very different answers to Chrome.

According to Wikipedia, approximately 7.96% of poeple use WebKit-based browsers, however the W3C shows that in November only 5.8% did.

+2
source share

Theoretically, since Google Chrome uses the same engine as Safari (WebKit), you have already tested. But Google made several changes to the engine, including a complete rewrite of the JavaScript interpreter. Extra testing never hurts, and it doesn't take long to confirm that everything is working as expected.

Now that GMail invites people to switch from IE to Firefox and Chrome, I assume that we will see that IE is losing more and more market share in these browsers. Chrome doesn't have much of the user base now, but I can imagine that this will change.

+1
source share

Better test it. I have already come across sites that work in Safari, but not in Chrome. I have installed IE8b2, FF3, Safari and Chrome installed on my machine. Not for testing, but because of the sites I visit. Accepts all 4 of them, so that all websites display correctly ...

+1
source share

if you don't have PNG24 with transparency changed from CSS, then everything should be fine.

However, I always try in all modern browsers (e.g. 6/7, ff2 / 3, opera 9.x, safari and chrome).

+1
source share

According to Wikipedia , Chrome now has a utilization rate of 0.78%. Depending on your audience, the actual number of users may be low and does not require testing.

+1
source share

Chrome has already received a small percentage of the community. However, as far as I know, Chrome follows W3C standards, and all websites running IE6, IE7 and FF2 / 3 worked just fine for me.

So, I think you should already test your apps in chrome.

Always check in these browsers today:

  • Internet Explorer 6, 7, 8
  • Firefox 2, 3
  • Chrome
  • Opera
  • Safari
  • Lynx
0
source share

Chrome uses the WebKit engine, which, as I recall, is the same engine used by Safari. Theoretically, if your site works for Safari, it should also work for Chrome.

See the Google Chrome page for more details.

0
source share

All Articles