Files
Oliver Dunk d2296fac85 Update dependencies (#1096)
Updates a nunber of dependencies in a single PR. These were
suggested by dependabot but updating them individually would
mean the reposistory would be in a broken state until everything
had merged.

I'm not personally a huge fan of lowercasing doctype, but
Prettier has taken an opinionated stance here and there is not a
way to disable it:

https://github.com/prettier/prettier/issues/15096
2024-02-20 12:53:23 +01:00

58 lines
1.4 KiB
HTML

<!--
* Copyright 2020 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>Printers</title>
<link href="printers.css" rel="stylesheet" type="text/css" />
<script src="printers.js"></script>
</head>
<body>
<h2>Print Job:</h2>
<p>
On some systems, the print job may leave the queue too quickly to be
visible in this list.
</p>
<div id="printJob">
<table id="printJobTable">
<thread>
<tr>
<th>Cancel</th>
<th>Job Id</th>
<th>Status</th>
</tr>
</thread>
<tbody id="printJobTbody"></tbody>
</table>
</div>
<h2>Printers:</h2>
<div id="printers">
<input type="checkbox" id="rollPrinters" name="rollPrinters" />
<label for="rollPrinters">Roll Printers</label>
<table id="printersTable">
<thead>
<tr>
<th>Print</th>
<th>Id</th>
<th>Name</th>
<th>Description</th>
<th>URI</th>
<th>Source</th>
<th>Default</th>
<th>Recently used</th>
<th>Capabilities</th>
<th>Supports trim</th>
<th>Status</th>
</tr>
</thead>
<tbody id="tbody" />
</table>
</div>
</body>
</html>