blob: fe4191e1419ad66ffddcea0ec4a131bec89a88e8 (
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
|
<!doctype html>
<html dir="$i18n{textdirection}" lang="$i18n{language}">
<head>
<meta charset="utf-8">
<title>$i18n{webrtcLogsTitle}</title>
<link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
<link rel="stylesheet" href="webrtc_logs.css">
<script src="chrome://resources/js/load_time_data.js"></script>
<script src="chrome://resources/js/util.js"></script>
<script src="strings.js"></script>
<script src="webrtc_logs.js"></script>
</head>
<body>
<header><h1>$i18n{webrtcLogsTitle}</h1></header>
<h2 id="text-log-banner" class="log-banner"></h2>
<div id="text-log-list" class="log-list"></div>
<p id="text-no-logs" hidden>$i18n{noTextLogsMessage}</p>
<h2 id="event-log-banner" class="log-banner"></h2>
<div id="event-log-list" class="log-list"></div>
<p id="event-no-logs" hidden>$i18n{noEventLogsMessage}</p>
<script src="chrome://resources/js/i18n_template.js"></script>
</body>
</html>
|