Video is not started even if play button has been pressed.
[framework/web/webkit-efl.git] / LayoutTests / fast / events / event-listener-on-link.html
1 <html>
2 <head>
3 <script>
4 function init() {
5     document.getElementById('test').addEventListener('DOMSubtreeModified',function () {
6                 alert('Subtree modified!')
7         },false);
8 }
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>