memory.xhtml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE html [
  3. <!ENTITY % htmlDTD
  4. PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  5. "DTD/xhtml1-strict.dtd">
  6. %htmlDTD;
  7. ]>
  8. <!-- This Source Code Form is subject to the terms of the Mozilla Public
  9. - License, v. 2.0. If a copy of the MPL was not distributed with this
  10. - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
  11. <html xmlns="http://www.w3.org/1999/xhtml" dir="">
  12. <head>
  13. <link rel="stylesheet" href="chrome://devtools/skin/widgets.css" type="text/css"/>
  14. <link rel="stylesheet" href="chrome://devtools/skin/memory.css" type="text/css"/>
  15. <link rel="stylesheet" href="chrome://devtools/skin/components-frame.css" type="text/css"/>
  16. <link rel="stylesheet" href="chrome://devtools/skin/components-h-split-box.css" type="text/css"/>
  17. </head>
  18. <body class="theme-body">
  19. <div id="app"></div>
  20. <script type="application/javascript;version=1.8"
  21. src="chrome://devtools/content/shared/theme-switching.js"
  22. defer="true">
  23. </script>
  24. <script type="application/javascript;version=1.8"
  25. src="initializer.js"
  26. defer="true">
  27. </script>
  28. <script type="application/javascript"
  29. src="chrome://devtools/content/shared/vendor/d3.js"
  30. defer="true">
  31. </script>
  32. <script type="application/javascript"
  33. src="chrome://devtools/content/shared/vendor/dagre-d3.js"
  34. defer="true">
  35. </script>
  36. </body>
  37. </html>