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