dataset_test.html 683 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. <!--
  4. Copyright 2011 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.dataset</title>
  12. <script src="../base.js"></script>
  13. <script>
  14. goog.require('goog.dom.datasetTest');
  15. </script>
  16. </head>
  17. <body>
  18. <span id="el1" data-basic-key="basic"
  19. data--unusual-key1="unusual1"
  20. data-unusual--key2="unusual2"
  21. data---bizarre---key="bizarre"></span>
  22. <span id="el2"></span>
  23. </body>
  24. </html>