Anyone know how to break out of an sandboxed iFrame (Chrome)
Example:
<iframe src="url" frameborder="0" scrolling="auto" sandbox="allow-scripts allow-forms" width="100%" height="100%"></iframe>
Typical methods such as
top.location = self.location
window.location = self.location
top.location.replace(self.location)
(etc...)
don't seem to work
Example:
<iframe src="url" frameborder="0" scrolling="auto" sandbox="allow-scripts allow-forms" width="100%" height="100%"></iframe>
Typical methods such as
top.location = self.location
window.location = self.location
top.location.replace(self.location)
(etc...)
don't seem to work