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
   39
   40
   41

ash / webui / os_feedback_ui / resources / index.html [blame]

<!-- Copyright 2021 The Chromium Authors
     Use of this source code is governed by a BSD-style license that can be
     found in the LICENSE file. -->
<!doctype html>
<html dir="$i18n{textdirection}" lang="$i18n{language}">

<head>
  <meta charset="utf-8">
  <style>
    html {
      background-color: var(--cros-bg-color);
      height: 100%;
      overflow: hidden;
    }

    html:has(body.jelly-enabled) {
      background-color: var(--cros-sys-app_base_shaded);
    }

    body {
      height: 100%;
    }

    body {
      margin: 0;
    }
  </style>
  <link rel="stylesheet" href="chrome://resources/chromeos/colors/cros_styles.css">
  <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
  <link rel="stylesheet" href="chrome://resources/css/md_colors.css">
</head>

<body>
  <feedback-flow></feedback-flow>
  <script type="module" src="feedback_flow.js"></script>
  <!-- Below mojo script required to run browser tests -->
  <script src="chrome://resources/mojo/mojo/public/js/mojo_bindings_lite.js">
  </script>
</body>

</html>