mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-13 18:27:35 +01:00
b4ea545412
The purpose of this API is basically to satisfy AMO reviewers in the future, since the use of innerHTML with variables (i.e., not plain text) will be rejected without any questions. Since this is not a problem for browsers other than Firefox, they will use simple innerHTML assignment, however safe-parsing could be implemented for them too.
21 lines
628 B
HTML
21 lines
628 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" type="text/css" href="css/common.css">
|
|
<link rel="stylesheet" type="text/css" href="css/devtool-log.css">
|
|
<title>µBlock log</title>
|
|
</head>
|
|
<body>
|
|
<div id="toolbar">
|
|
<span id="reload" class="button fa"></span>
|
|
<span id="clear" class="button fa"></span>
|
|
</div><!-- DO NOT REMOVE --><div id="content">
|
|
<table><tbody></tbody></table>
|
|
</div>
|
|
<script src="js/vapi-common.js"></script>
|
|
<script src="js/vapi-client.js"></script>
|
|
<script src="js/udom.js"></script>
|
|
<script src="js/devtool-log.js"></script>
|
|
</body>
|
|
</html>
|