forked from web-platform-tests/wpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage-inside-svg.html
27 lines (27 loc) · 1.02 KB
/
image-inside-svg.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
<!DOCTYPE HTML>
<meta charset=utf-8>
<title>Largest Contentful Paint: observe image inside SVG</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/largest-contentful-paint-helpers.js"></script>
<script>
async_test(function (t) {
if (!window.PerformanceElementTiming) {
assert_unreached("PerformanceElementTiming is not implemented");
}
const beforeLoad = performance.now();
new PerformanceObserver(
t.step_func_done(entryList => {
assert_equals(entryList.getEntries().length, 1);
const entry = entryList.getEntries()[0];
const url = window.location.origin + '/images/blue.png';
// blue.png is 133 by 106.
const size = 133 * 106;
checkImage(entry, url, 'image_id', size, beforeLoad);
})
).observe({type: 'largest-contentful-paint', buffered: true});
}, "Image inside SVG is observable.");
</script>
<svg width="300" height="300" id='svg_id'>
<image href='/images/blue.png' id='image_id'/>
</svg>