index.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>Hyphenopoly.js &ndash; Testsuite</title>
  5. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  6. <style type="text/css">
  7. body {
  8. width:80%;
  9. margin-left:10%;
  10. margin-right:10%;
  11. font: normal 11px Verdana;
  12. line-height: 18px;
  13. }
  14. #template {
  15. display: none;
  16. }
  17. #testframe {
  18. visibility: hidden;
  19. }
  20. .passed {
  21. color: green;
  22. background-color: lime;
  23. }
  24. .failed {
  25. color: maroon;
  26. background-color: red;
  27. }
  28. .obsolete {
  29. color: black;
  30. background-color: silver;
  31. }
  32. .visual {
  33. color: olive;
  34. background-color: yellow;
  35. }
  36. .omitted {
  37. color: grey;
  38. background-color: black;
  39. }
  40. .testname {
  41. display: inline-block;
  42. width: 6em;
  43. }
  44. .result {
  45. display: inline-block;
  46. width: 5em;
  47. }
  48. ul {
  49. list-style-type: none;
  50. padding-left: 0px;
  51. }
  52. </style>
  53. </head>
  54. <body>
  55. <h1>The Hyphenopoly Testsuite</h1>
  56. <ul id="template">
  57. <li>
  58. <span class="testname"><a href="@file@">@file@</a></span>
  59. <span class="result @result@">[@result@]</span>
  60. <span class="desc">@desc@</span>
  61. </li>
  62. </ul>
  63. <ul id="testresults">
  64. </ul>
  65. <iframe id="testframe" src=""></iframe>
  66. <script src="testdriver.js"></script>
  67. </body>
  68. </html>