1. Enforce receiver checks on IDL interfaces. 2. Avoid prototype manipulation on constructing IDL interfaces with `ReflectConstruct`. 3. `defineReplaceableAttribute` should create IDL getter/setter. 4. Corrected `PerformanceResourceTiming` to inherit the public interface `PerformanceEntry` instead of the internal interface `InternalPerformanceResourceTiming`. 5. `detail` is not a specified attribute on `PerfomanceEntry`. Node.js specific extensions are moved to a subclass of `PerformanceEntry` as `PerformanceNodeEntry`. PR-URL: https://github.com/nodejs/node/pull/44483 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
23 lines
No EOL
872 B
HTML
23 lines
No EOL
872 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>Test the sequence of events when reporting iframe timing.</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="resources/resource-loaders.js"></script>
|
|
<body>
|
|
<script>
|
|
function test(href, type) {
|
|
promise_test(async t => {
|
|
await load.iframe(href);
|
|
const entries = performance.getEntriesByType('resource').filter(({name}) => name.includes(href));
|
|
assert_equals(entries.length, 1);
|
|
assert_equals(entries[0].initiatorType, 'iframe');
|
|
}, `Iframes should report resource timing for ${type} iframes`);
|
|
}
|
|
|
|
test('/common/square.png', 'image');
|
|
test('/common/dummy.xhtml', 'xhtml');
|
|
test('/common/dummy.xml', 'xml');
|
|
test('/common/text-plain.txt', 'text');
|
|
</script>
|
|
</body> |