iframe_bug440572.html (369B)
1 <html> 2 <body> 3 <script> 4 5 var success = 0; 6 7 try { 8 parent[name].success = 1; 9 parent.postMessage({ 10 from: name, 11 result: success ? "success" : "failure" 12 }, "http://mochi.test:8888"); 13 } catch (e) { 14 parent.postMessage({ 15 from: name, 16 result: e.toString() 17 }, "http://mochi.test:8888"); 18 } 19 20 </script> 21 <p>Move on, nothing to see here...</p> 22 </body> 23 </html>