forked from GoogleChrome/chrome-extensions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
print_jobs.html
41 lines (40 loc) · 1.05 KB
/
print_jobs.html
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
<!--
* Copyright 2019 The Chromium Authors. All rights reserved. Use of this
* source code is governed by a BSD-style license that can be found in the
* LICENSE file.
-->
<!DOCTYPE HTML>
<html>
<head>
<title>Recent print jobs</title>
<link href="print_jobs.css" rel="stylesheet" type="text/css">
<script src="print_jobs.js"></script>
</head>
<body>
<h2>Recent print jobs:</h2>
<div id="printJobs">
<table id="printJobsTable">
<thead>
<tr>
<th rowspan="2">Title</th>
<th rowspan="2">Status</th>
<th rowspan="2">Time</th>
<th rowspan="2">Number of pages</th>
<th colspan="3">Printer</th>
<th colspan="5">Settings</th>
</tr>
<tr>
<th>Name</th>
<th>URI</th>
<th>Source</th>
<th>Color</th>
<th>Duplex</th>
<th>Paper width</th>
<th>Paper height</th>
<th>Copies</th>
</tr>
</thead>
</table>
</div>
</body>
</html>