textrangeiterator_test.html 712 B

12345678910111213141516171819202122232425262728
  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>goog.dom.TextRangeIterator Tests</title>
  12. <script src="../base.js"></script>
  13. <script>
  14. goog.require('goog.dom.TextRangeIteratorTest');
  15. </script>
  16. </head>
  17. <body>
  18. <!--
  19. The next line goes past 80 characters to avoid ambiguity with
  20. newlines as text nodes
  21. -->
  22. <div id="test"><a href="#" id="a1">T<b id="b1">e</b>xt</a><span id="span1"></span><p id="p1">Text</p></div>
  23. <ul id="test2">foo<br>bar</ul>
  24. </body>
  25. </html>