blob: 4ebb85d9e03018b8f4ab47ca43ec5b42f80fac06 (
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
|
<!DOCTYPE HTML>
<html i18n-values="dir:textdirection">
<head>
<meta charset="utf-8">
<title i18n-content="title"></title>
<link rel="stylesheet" href="chrome://resources/css/button.css">
<link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
<link rel="stylesheet" href="input_window_dialog.css">
<script src="chrome://input-window-dialog/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="input_window_dialog.js"></script>
</head>
<body>
<div class="vbox">
<div>
<span id="name-label" class="label"></span>
<input id="name" type="text" autofocus>
</div>
<div id="url-area">
<span id="url-label" class="label"></span>
<input id="url" type="text">
</div>
<div class="buttons-area">
<div>
<button id="cancel" type="reset" i18n-content="cancel">Cancel</button>
</div>
<div>
<button id="ok" type="submit" i18n-content="ok">OK</button>
</div>
</div>
</div>
</body>
</html>
|