2008-11-04 Anders Carlsson <andersca@apple.com>
[webkit/qt.git] / LayoutTests / fast / dom / Window / attr-constructor.html
blobd1781413dde2c6823bcf665c95ed55d7770b9322
1 <body>
2 <p>Test for <a href="http://bugs.webkit.org/show_bug.cgi?id=13480">bug 13480</a>:
3 window.Attr is undefined.</p>
4 <div id=test></div>
5 <script>
6 try {
7 if (window.layoutTestController)
8 layoutTestController.dumpAsText();
10 Attr.prototype.foobar = function () { document.write("SUCCESS"); }
12 document.getElementById("test").getAttributeNode("id").foobar();
13 } catch (ex) {
14 document.write(ex);
16 </script>
17 </body>