browserfeature_test.html 777 B

123456789101112131415161718192021222324252627282930313233
  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. <!--
  9. Ensures that goog.editor.BrowserFeature is up-to-date with the latest
  10. bug fixes from browser manufacturers.
  11. @author nicksantos@google.com (Nick Santos)
  12. -->
  13. <head>
  14. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  15. <meta charset="UTF-8" />
  16. <title>
  17. Closure Unit Tests - goog.editor.BrowserFeature
  18. </title>
  19. <script src="../base.js">
  20. </script>
  21. <script>
  22. goog.require('goog.editor.BrowserFeatureTest');
  23. </script>
  24. </head>
  25. <body>
  26. <div id="root" contentEditable></div>
  27. <div id="testNormalizeCorruption">text</div>
  28. </body>
  29. </html>