2008-11-04 Anders Carlsson <andersca@apple.com>
[webkit/qt.git] / LayoutTests / fast / events / event-listener-on-link.html
blob49428ed02956b4c16543ac6b766464ea41541f47
1 <html>
2 <head>
3 <script>
4 function init() {
5 document.getElementById('test').addEventListener('DOMSubtreeModified',function () {
6 alert('Subtree modified!')
7 },false);
9 </script>
10 <link rel="Top" id="test" href="#">
11 </head>
12 <body onload="init()">
13 This tests that you can successfully add a DOMSubtreeModified event listener to a link element, and the page should load without crashing.
14 </body>
15 </html>