summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/hung_renderer_dialog.html
blob: ab0390d68c7f154f8e1b2e3995c21307d9a08b59 (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
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE HTML>
<html i18n-values="dir:textdirection">
  <head>
    <meta charset="utf-8">
    <title i18n-content="title"></title>
    <link rel="stylesheet" href="hung_renderer_dialog.css">
    <link rel="stylesheet" href="chrome://resources/css/button.css">
    <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
    <script src="chrome://hung-renderer/strings.js"></script>
    <script src="chrome://resources/js/cr.js"></script>
    <script src="chrome://resources/js/cr/ui.js"></script>
    <script src="chrome://resources/js/i18n_template.js"></script>
    <script src="chrome://resources/js/util.js"></script>
    <script src="chrome://hung-renderer/hung_renderer_dialog.js"></script>
  </head>

  <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
    <div class="vbox">
      <div id="top-box" class="fill">
        <div class="hbox">
          <div>
            <img id="theme-graphic" src="chrome://theme/IDR_FROZEN_TAB_ICON">
          </div>
          <div class="fill">
            <div class="vbox">
              <div>
                <div id="explanation" i18n-content="explanation"></div>
              </div>
              <div class="fill">
                <div id="tab-list-scroll-container">
                  <ul class="vbox" id="tab-table">
                    <!-- JS inserts list items here. -->
                  </ul>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
      <div>
        <div class="action-area">
          <div class="button-strip">
            <button id="kill" i18n-content="kill"></button>
            <button id="wait" i18n-content="wait"></button>
          </div>
        </div>
      </div>
    </div>
  </body>
</html>