| <script src="../js/resources/js-test-pre.js"></script> |
| if (window.layoutTestController) { |
| layoutTestController.waitUntilDone(); |
| layoutTestController.dumpAsText(); |
| description("Tests Bugzilla Bug 9815: JavaScript TypeError loading Dean Edwards' JS compressor/obfuscator"); |
| MyClass.runTest = function() |
| var objTest = new this.func; |
| return objTest.internalFunc; |
| MyClass.func = new Function("return this"); |
| internalFunc: function() { } |
| var actual = "" + MyClass.runTest(); |
| shouldBe("actual", "'function () { }'"); |
| <script src="../js/resources/js-test-post.js"></script> |
| if (window.layoutTestController) |
| layoutTestController.notifyDone(); |