bidiinput_test.html 771 B

1234567891011121314151617181920212223242526272829303132
  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. <!--
  9. -->
  10. <head>
  11. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  12. <meta charset="UTF-8" />
  13. <title>
  14. Closure Unit Tests - goog.ui.BidiInput
  15. </title>
  16. <script type="text/javascript" src="../base.js">
  17. </script>
  18. <script type="text/javascript">
  19. goog.require('goog.ui.BidiInputTest');
  20. </script>
  21. </head>
  22. <body>
  23. <div id="textDiv">
  24. <input type="text" id="emptyText" value="" />
  25. <input type="text" id="bidiText" value="hello, world!" />
  26. <div id="bidiTextDiv" contenteditable="true">
  27. hello,world!
  28. </div>
  29. </div>
  30. </body>
  31. </html>