matcher_test.html 819 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html>
  3. <!--
  4. Copyright 2007 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.pattern.Matcher Tests</title>
  12. <script src="../../base.js"></script>
  13. <script type="text/javascript">
  14. goog.require('goog.dom.pattern.matcherTest');
  15. </script>
  16. </head>
  17. <body>
  18. <p id="p1">
  19. <span id="span1" style="color: red"></span>
  20. </p>
  21. <p id="p2">
  22. <span id="span2" style="color: blue">x</span>
  23. </p>
  24. <p id="p3">Text</p>
  25. <p id="p4">Other Text</p>
  26. <span></span>
  27. <div id="div1"><b>x</b><b>y</b><i>z</i></div>
  28. <p id="p5"><b id="b1">x</b><b id="b2">y</b><i id="i1">z</i></p>
  29. </body>
  30. </html>