classlist_test.html 660 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html>
  3. <!--
  4. Copyright 2012 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 charset="UTF-8" />
  10. <title>Closure Unit Tests - goog.dom.classlist</title>
  11. <script src="../base.js"></script>
  12. <style type="text/css">
  13. #styleTest1 {
  14. width:120px;font-weight:bold;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <p id="p1" class="SOMECLASS
  20. OTHERCLASS"></p>
  21. <p id="p2" class="camelCase"></p>
  22. <svg>
  23. <rect id="rect1" class="svgclass"/>
  24. </svg>
  25. <script>
  26. goog.require('goog.dom.classlist_test');
  27. </script>
  28. </body>
  29. </html>