2
0

benchmark.rml 538 B

123456789101112131415161718192021222324252627282930313233343536
  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. left: 80dp;
  9. right: 80dp;
  10. top: 50dp;
  11. bottom: 50dp;
  12. max-width: 2000dp;
  13. max-height: 2000dp;
  14. }
  15. #fps
  16. {
  17. position: absolute;
  18. top: 55dp;
  19. left: 20dp;
  20. font-size: 0.85em;
  21. text-align: left;
  22. }
  23. #performance
  24. {
  25. width: 800dp;
  26. height: 300dp;
  27. }
  28. </style>
  29. </head>
  30. <body template="window">
  31. <div id="fps"/>
  32. <div id="click_test"/>
  33. <div id="performance"/>
  34. </body>
  35. </rml>