diff options
Diffstat (limited to 'js/xpconnect')
-rw-r--r-- | js/xpconnect/tests/mochitest/test_bug1094930.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/xpconnect/tests/mochitest/test_bug1094930.html b/js/xpconnect/tests/mochitest/test_bug1094930.html index 4349493607..674edfe475 100644 --- a/js/xpconnect/tests/mochitest/test_bug1094930.html +++ b/js/xpconnect/tests/mochitest/test_bug1094930.html @@ -16,14 +16,14 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=1094930 <script type="application/javascript"> SimpleTest.waitForExplicitFinish(); var proto = { - createdCallback: function() { - ok(true, "createdCallback was called"); + connectedCallback: function() { + ok(true, "connectedCallback was called"); SimpleTest.finish() } }; var f = document.registerElement.call(frames[0].document, "x-foo", { prototype: proto }); - var inst = new f(); + frames[0].document.firstChild.appendChild(new f()); </script> </body> </html> |