~ubuntu-branches/ubuntu/wily/epiphany-browser/wily

« back to all changes in this revision

Viewing changes to src/resources/process-crash.html

Tags: upstream-3.10.1
Import upstream version 3.10.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 
2
<!--
 
3
  Copyright © 2013 Igalia S.L.
 
4
 
 
5
  This program is free software; you can redistribute it and/or modify
 
6
  it under the terms of the GNU General Public License as published by
 
7
  the Free Software Foundation; either version 2, or (at your option)
 
8
  any later version.
 
9
 
 
10
  This program is distributed in the hope that it will be useful,
 
11
  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
13
  GNU General Public License for more details.
 
14
 
 
15
  You should have received a copy of the GNU General Public License
 
16
  along with this program; if not, write to the Free Software
 
17
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
18
-->
 
19
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="%s" lang="%s" dir="%s">
 
20
<head>
 
21
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
 
22
  <title>%s</title>
 
23
  <style type="text/css">
 
24
    body {
 
25
      margin: 0 auto;
 
26
      font: message-box;
 
27
      background-color: #2e3436;
 
28
      color: #d0d1cf;
 
29
    }
 
30
 
 
31
    #container {
 
32
      padding: 10% 12% 5%;
 
33
      margin: 0 auto;
 
34
      max-width: 650px;
 
35
    }
 
36
 
 
37
    #main_icon {
 
38
      float: left;
 
39
      padding-right: 20px;
 
40
    }
 
41
 
 
42
    html[dir="rtl"] #main_icon {
 
43
      padding-left: 20px;
 
44
      padding-right: 0;
 
45
      float: right;
 
46
    }
 
47
 
 
48
    #content {
 
49
      display: table-cell;
 
50
      vertical-align: top;
 
51
    }
 
52
 
 
53
    #content h1 {
 
54
      margin-top: 0;
 
55
      font-size: 200%;
 
56
    }
 
57
  </style>
 
58
 
 
59
</head>
 
60
<body>
 
61
  <div id="container">
 
62
      <div id="main_icon">
 
63
      <!-- We do nothing with the URI for now: %s -->
 
64
        <img width="150px" height="150px" src="%s" alt="Sad face icon"/>
 
65
      </div>
 
66
      <div id="content">
 
67
          <h1>%s</h1>
 
68
          <div class="explanation">
 
69
            %s
 
70
          </div>
 
71
      </div>
 
72
  </div>
 
73
</body>
 
74
</html>