Do not try to use http://www.google.com/ , but a different URL, I donβt know what you really want to link to?
When I change src
to http://www.msn.com it works fine
This has something to do with X-Frame-Options. In Google Chrome, I get the following message: Failure to display a document because display is not allowed using X-Frame-Options.
You can manipulate this by setting the X-Frame-Options HTTP header. See also: Overcoming "Disabling with X-Frame-Options"
Most likely, Google sends DENY or SAMEORIGIN, and therefore it does not work
Edit: verified using Fiddler and Google has the following headers:
HTTP/1.1 200 OK Date: Mon, 14 Nov 2011 20:25:29 GMT Expires: -1 Cache-Control: private, max-age=0 Content-Type: text/html; charset=UTF-8 Content-Encoding: gzip Server: gws Content-Length: 18112 X-XSS-Protection: 1; mode=block X-Frame-Options: SAMEORIGIN
source share