controlrange_test.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html>
  3. <!--
  4. Copyright 2008 The Closure Library Authors. All Rights Reserved.
  5. Use of this source code is governed by the Apache License, Version 2.0.
  6. See the COPYING file for details.
  7. -->
  8. <head>
  9. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  10. <meta charset="UTF-8" />
  11. <title>Closure Unit Tests - goog.dom.ControlRange</title>
  12. <script src="../base.js"></script>
  13. <script>
  14. goog.require('goog.dom.ControlRangeTest');
  15. </script>
  16. </head>
  17. <body>
  18. <div id="test1"></div>
  19. <div id="test2">
  20. <img id="logo" src="http://www.google.com/intl/en_ALL/images/logo.gif">
  21. </div>
  22. <!-- Omit whitespace here to ensure no extra text nodes are included. -->
  23. <table id="table"><tbody id="tbody"><tr id="tr1"><td id="td11">a</td
  24. ><td id="td12">b</td></tr><tr id="tr2"><td id="td21">c</td><td id="td22"
  25. >d</td></tr></tbody></table>
  26. <table id="table2">
  27. <tr>
  28. <td>moof</td>
  29. </tr>
  30. <tr>
  31. <td id="table2td">
  32. foo
  33. <img id="logo2" src="http://www.google.com/intl/en_ALL/images/logo.gif">
  34. bar
  35. </td>
  36. </tr>
  37. </table>
  38. </body>
  39. </html>