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>
18 lines
429 B
HTML
18 lines
429 B
HTML
<body>
|
|
<script>
|
|
function request() {
|
|
var client = new XMLHttpRequest,
|
|
baseurl = "https://{{hosts[alt][]}}:{{ports[https][0]}}{{location[pathname]}}",
|
|
url = new URL("fake_responses.py", baseurl).href;
|
|
client.open("GET", url, false)
|
|
client.send(null)
|
|
client.open("GET", url, false)
|
|
client.send(null)
|
|
}
|
|
|
|
if(window.parent.setup_iframe) {
|
|
window.parent.setup_iframe();
|
|
request();
|
|
}
|
|
</script>
|
|
</body>
|