clicks.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <html>
  2. <head>
  3. <title>clicks</title>
  4. </head>
  5. <body>
  6. <h1>Testing Clicks</h1>
  7. <iframe id="source" src="click_source.html">
  8. </iframe>
  9. <iframe id="target" name="target">
  10. </iframe>
  11. <br>
  12. <a href="xhtmlTest.html" id="normal">I'm a normal link</a>
  13. <br/>
  14. <a href="#" id="anchor">I go to an anchor</a>
  15. <br>
  16. <a href="javascript:window.open('xhtmlTest.html', '_blank')" id="new-window">I open a window with javascript</a>
  17. <br/>
  18. <a href="xhtmlTest.html" id="twoClientRects"><span></span><span>Click me</span></a>
  19. <br/>
  20. <a href="xhtmlTest.html" id="link-with-enclosed-image"><img id="enclosed-image" src="./icon.gif"/></a>
  21. <br/>
  22. <a href="xhtmlTest.html" id="link-with-enclosed-span"><span id="enclosed-span" style="color: rgb(0, 255, 0)">I'm a green link</span></a>
  23. <p style="background: none repeat scroll 0% 0% rgb(0, 255, 0); width: 5em;"><a id="overflowLink" href="xhtmlTest.html">looooooooooong short looooooooooong</a>
  24. </p>
  25. <div id="bubblesTo" onclick="window.bubbledClick = true;">
  26. <a id="bubblesFrom">I bubble</a>
  27. </div>
  28. <a href="xhtmlTest.html">333333</a>
  29. <p><a href="xhtmlTest.html" id="embeddedBlock"><span style="display: block;">I have a span</span><div>And a div</div><span>And another span</span></a></p>
  30. </body>
  31. </html>