I want to embed iframe section on account tab. I've created simple Visualforce page with Standart Controller - Account.
<apex:page standardController="Account">
<h1>Congratulations</h1>
This is your new Page
<div>
<apex:iframe src="https://www.facebook.com/" width="800" height="600" />
</div>
</apex:page>
I've added a VisualForce section into account layout. But I'm unable to see my iframe content in the result details page. It seems that iframe content is rendered only if my iframe is related to salesforce domain.
So my question is: Is it possible to embed external domain page into standard details page?