ruffle/web/packages/selfhosted/test/polyfill/iframes_injected/index.html

36 lines
885 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>FAKE CONTENT</title>
<style>
* {
margin: 0;
}
</style>
<script>
window.RufflePlayer = window.RufflePlayer || {};
window.RufflePlayer.config = {
polyfills: [
"static-content",
"plugin-detect",
"dynamic-content",
"frames",
],
};
</script>
</head>
<body>
<a href="inner.html" target="content" id="reload-link">Reload frame</a>
<iframe
width="550"
height="400"
src="inner.html"
scrolling="no"
frameborder="0"
name="content"
id="test-frame"
></iframe>
</body>
</html>