-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpartytown.html
39 lines (32 loc) · 1.02 KB
/
partytown.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="src/styles.css">
<title>Partytown</title>
<script src="~partytown/debug/partytown.js"></script>
<script>
partytown = {
debug: true,
};
</script>
</head>
<body>
<h1>Partytown</h1>
<div>Main Load time: <span id="mainLoadTime"></span></div>
<div>Partytown Execute time results: <span id="partytownResult"></span></div>
<table border="0" id="results"></table>
<div id="output"></div>
<script type="text/partytown" src="src/script-partytown.js"></script>
<script>
const MAIN_LOAD_TIME = document.getElementById('mainLoadTime');
window.addEventListener("load", () => {
const now = new Date().getTime();
const loadingTime = now - performance.timing.navigationStart;
MAIN_LOAD_TIME.innerText = `${loadingTime}ms`;
}, false);
</script>
</body>
</html>