- 727 名前:名無しさん@お腹いっぱい。 mailto:sage [2008/09/03(水) 09:58:29 ID:d3S8TkYW0]
- <!DOCTYPE html><html><head><meta charset="utf-8"><script type="text/javascript">
const contentWindow = InspectorController.inspectedWindow(); const contentDocument = contentWindow.document; function init() { window.log = function log(str) { document.body.appendChild(document.createElement('div')).appendChild(document.createTextNode(str)); }; loadScript(0); } function loadScript(n) { var code = readFile(n + '.js'); if (!code) return; var s = contentDocument.createElement('script'); s.setAttribute('type', 'application/x-javascript'); s.setAttribute('charset', 'utf-8'); s.innerText = code; contentDocument.body.appendChild(s); log('loaded ' + n + '.js'); contentDocument.body.removeChild(s); loadScript(n + 1); } function readFile(name, defaultValue) { var req = new XMLHttpRequest(); req.open('GET', name, false); req.send(); return req.responseText || defaultValue; } </script></head><body onload="init()"><div> <button onclick="window.close();">閉じる</button></div><hr></body></html>
|

|