Bug 1076830 - Name the test function so it doesn't get GC'd. r=past

This commit is contained in:
Nick Fitzgerald 2014-10-07 16:23:00 +02:00
Родитель 09a4457aa2
Коммит 40af9b7a39
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -6,7 +6,8 @@
<title>Debugger Breakpoints Other Tabs Test Page</title>
</head>
<script>
(function () {
function theTest() {
window.foo = "break on me";
}());
}
theTest();
</script>