blob: 9ce2efb08bfeca8f501e0afaac7d2b0f2ee58c43 (
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
|
<!DOCTYPE HTML>
<html i18n-values="dir:textdirection;">
<head>
<meta charset="utf-8">
<title i18n-content="title"></title>
<link rel="stylesheet" href="dom_ui.css">
<link rel="stylesheet" href="print_preview.css">
<script src="chrome://resources/js/local_strings.js"></script>
<script src="chrome://resources/js/util.js"></script>
</head>
<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
<div id="navbar-container">
<div id="destination-container">
<h1>Destination</h1>
<div id="destination-list">
LIST GOES HERE
</div>
<div id="print-buttons">
<button id="printButton">Print</button>
<button id="cancelButton">Cancel</button>
</div>
</div>
<div id="options-container">
OPTIONS HERE
</div>
</div>
<div id="mainview">
MAIN
</div>
<script>
console.log('in bottom script');
</script>
</body>
</html>
|