graphs-frame.xhtml 831 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- This Source Code Form is subject to the terms of the Mozilla Public
  3. - License, v. 2.0. If a copy of the MPL was not distributed with this
  4. - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
  5. <!DOCTYPE html>
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  9. <link rel="stylesheet" href="chrome://devtools/skin/widgets.css" ype="text/css"/>
  10. <script type="application/javascript;version=1.8" src="chrome://devtools/content/shared/theme-switching.js"/>
  11. <style>
  12. body {
  13. overflow: hidden;
  14. margin: 0;
  15. padding: 0;
  16. font-size: 0;
  17. }
  18. </style>
  19. </head>
  20. <body role="application">
  21. <div id="graph-container">
  22. <canvas id="graph-canvas"></canvas>
  23. </div>
  24. </body>
  25. </html>