blob: e98535f1e06e0cfbfbccf4665e4d4b236e4744cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<body>
<iframe></iframe>
<script>
var win = window.frames[0];
win.document.open();
win.document.write("<!DOCTYPE html><html><head></head><body></body></html>");
win.document.close();
win.document.body.innerHTML = "<link rel='stylesheet' type='text/css' href='outer-sheet.css' />";
win.document.body.innerHTML += "<p style='padding:2px'>test</p>";
</script>
</body>
|