Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!doctype html> | |
| 2 <body> | |
| 3 <span id="status">success</span> | |
| 4 <script> | |
| 5 iframe = document.body.appendChild(document.createElement("iframe")); | |
| 6 obj = iframe.contentWindow.Object; | |
| 7 app = iframe.contentWindow.chrome.app; | |
| 8 iframe.remove(); | |
| 9 obj.prototype.__defineGetter__("handler_function", function() { | |
| 10 document.getElementById('status').textContent = 'FAILED'; | |
| 11 return 0xBADDEAD; | |
| 12 }); | |
| 13 app.getDetails(); | |
| 14 </script> | |
| 15 </body> | |
| OLD | NEW |