1
0
Fork 0
firefox/testing/web-platform/tests/resource-timing/resources/tao-response.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

13 lines
327 B
JavaScript

const tao_response = (tao_value, base_url) => {
const payload = {
'headers': {
'Timing-Allow-Origin': tao_value
}
};
return custom_cors_response(payload, base_url);
};
const remote_tao_response = tao_value => {
const {REMOTE_ORIGIN} = get_host_info();
return tao_response(tao_value, REMOTE_ORIGIN);
};