blob: 5bd1f01e8737e2d3bf7127482f8dff7568b19c6a [file] [log] [blame]
<script>
if (window.layoutTestController)
layoutTestController.dumpAsText();
var newPrototype = new Object();
newPrototype.myNewPrototypeFunction = function() { return "myNewPrototypeFunction"; }
window.__proto__ = newPrototype;
window.myNewPrototypeFunction();
</script>
If this did not crash the test has succeeded.