-
Notifications
You must be signed in to change notification settings - Fork 415
/
cls.njk
44 lines (36 loc) · 1.55 KB
/
cls.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
<!--
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">CLS Test</h1>
{% if noLayoutShifts %}
<p id="p1">This text does not shift.</p>
{% else %}
<p id="p2">
<img id="img1" elementtiming="main-image" src="/test/img/square.png?delay=500" alt="Gray square" />
[text node contents]
</p>
<p id="p3"><img id="img3" elementtiming="secondary-image" src="/test/img/square.png?delay=1000" alt="Gray square" /></p>
<p id="p4">Text below the images that will get pushed down.</p>
{% endif %}
<p id="p5"><a id="navigate-away" href="https://example.com">Navigate away</a></p>
<script type="module">
const {onCLS} = await __testImport('{{ modulePath }}');
onCLS((cls) => {
// Log for easier manual testing.
console.log(cls);
// Test sending the metric to an analytics endpoint.
navigator.sendBeacon(`/collect`, JSON.stringify(__toSafeObject(cls)));
}, {reportAllChanges: self.__reportAllChanges});
</script>
{% endblock %}