summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/discards/discards.html
blob: cadb34eb2b8f8765ab4b37987827f00174988893 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!--
Copyright 2017 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.

This is an internal only page meant for debugging. It is not intended for
general use and is not localized.-->
<!doctype html>
<html dir="ltr" lang="en">
  <head>
    <title>Discards</title>
    <meta charset="utf-8">
    <meta name="color-scheme" content="light dark">
    <link rel="stylesheet" href="chrome://resources/css/md_colors.css">
    <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
    <style>
      html,
      body {
        height: 100%;
        overflow: hidden;
      }

      @media (prefers-color-scheme: dark) {
        body {
          background-color: var(--md-background-color);
        }
      }

      body {
        margin: 0;
      }
    </style>
  </head>
  <body dir="ltr">
    <discards-main></discards-main>
    <script type="module" src="discards_main.js"></script>
  </body>
</html>