benchmark.rml 559 B

1234567891011121314151617181920212223242526272829303132333435
  1. <rml>
  2. <head>
  3. <link type="text/template" href="../../../assets/window.rml"/>
  4. <title>Benchmark Sample</title>
  5. <style>
  6. body.window
  7. {
  8. max-width: 2000px;
  9. max-height: 2000px;
  10. width: 1600px;
  11. height: 750px;
  12. }
  13. #fps
  14. {
  15. position: absolute;
  16. top: 55px;
  17. left: 20px;
  18. font-size: 0.85em;
  19. text-align: left;
  20. }
  21. #performance
  22. {
  23. width: 800px;
  24. height: 300px;
  25. /*transform: scale(0.6) rotate(-60deg);*/
  26. }
  27. </style>
  28. </head>
  29. <body template="window">
  30. <div id="fps"/>
  31. <div id="click_test"/>
  32. <div id="performance"/>
  33. </body>
  34. </rml>