Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions largest-contentful-paint/contracted-image.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
<script src="/resources/testharnessreport.js"></script>
<script src="resources/largest-contentful-paint-helpers.js"></script>
<script>
if ('paintTime' in PerformancePaintTiming.prototype) {
console.log('paintTime is available in PerformancePaintTiming.prototype');
} else {
console.log('paintTime is NOT available in PerformancePaintTiming.prototype');
}
async_test(function (t) {
assert_implements(window.LargestContentfulPaint, "LargestContentfulPaint is not implemented");
const beforeLoad = performance.now();
Expand Down