-
Notifications
You must be signed in to change notification settings - Fork 415
/
ttfb.njk
50 lines (40 loc) · 1.65 KB
/
ttfb.njk
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
42
43
44
45
46
47
48
49
50
<!--
Copyright 2020 Google LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
{% extends 'layout.njk' %}
{% block content %}
<h1 elementtiming="main-heading">TTFB Test</h1>
<p>
<img elementtiming="main-image" {% if imgHidden %}hidden{% endif %} src="/test/img/square.png?delay={{ imgDelay }}">
</p>
<p>Text below the image</p>
<p><a id="navigate-away" href="https://example.com">Navigate away</a></p>
<script>
// Set the blocking values based on query params if present.
const params = new URLSearchParams(location.search);
if (params.has('responseStart')) {
const navEntry = performance.getEntriesByType('navigation')[0];
Object.defineProperty(navEntry, 'responseStart', {
value: Number(params.get('responseStart')),
});
}
</script>
<script type="module">
const {onTTFB} = await __testImport('{{ modulePath }}');
onTTFB((ttfb) => {
// Log for easier manual testing.
console.log(ttfb);
// Test sending the metric to an analytics endpoint.
navigator.sendBeacon(`/collect`, JSON.stringify(__toSafeObject(ttfb)));
}, {reportAllChanges: self.__reportAllChanges});
</script>
{% endblock %}