removeformatting_test.html 994 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!DOCTYPE html>
  2. <!--
  3. All Rights Reserved.
  4. -->
  5. <html>
  6. <!--
  7. Copyright 2008 The Closure Library Authors. All Rights Reserved.
  8. Use of this source code is governed by the Apache License, Version 2.0.
  9. See the COPYING file for details.
  10. -->
  11. <head>
  12. <!--
  13. This test has not yet been updated to run on IE8. See http://b/hotlist?id=36311
  14. -->
  15. <!--meta http-equiv="X-UA-Compatible" content="IE=edge"-->
  16. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
  17. <meta charset="UTF-8" />
  18. <title>
  19. goog.editor.plugins.RemoveFormatting Tests
  20. </title>
  21. <script type="text/javascript" src="../../base.js">
  22. </script>
  23. <script type="text/javascript">
  24. goog.require('goog.editor.plugins.RemoveFormattingTest');
  25. </script>
  26. </head>
  27. <body>
  28. <!--
  29. This wrapper table is outside the mock editor and only used ensure that it is
  30. ignored by the tests.
  31. -->
  32. <table>
  33. <tr>
  34. <td>
  35. <div id="html">
  36. </div>
  37. </td>
  38. </tr>
  39. </table>
  40. <div id="abcde">abcde</div>
  41. </body>
  42. </html>