blob: 2fa24769729f705547aa526cf4eca16c483cad78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<html>
<body>
<p elementtiming='text'>Text</p>
<script>
const observer = new PerformanceObserver(entryList => {
window.parent.triggerTest(entryList.getEntries()[0]);
});
observer.observe({type: 'element', buffered: true});
</script>
</body>
</html>
|