JSFiddle - React, Tailwind, and code Playground
HTML
<h1>IFrame, normal</h1>
<p>src of this iframe is <code>http://www.example.com/</code></p>
<iframe src="http://www.example.com/"></iframe>
<h1>IFrame, view-source</h1>
<p>src of this iframe is <code>view-source:http://www.example.com/</code></p>
<iframe src="view-source:http://www.example.com/"></iframe>
<h1>IFrame, view-source, on Google</h1>
<p>Google sets X-Frame-Options:SAMEDOMAIN, so we expect view-source to fail here:
<p>src of this iframe is <code>view-source:http://www.google.com/</code></p>
<iframe src="view-source:http://www.google.com/"></iframe>