blob: 97c96cf96c276730546686a62a6914d428871c0b (
plain)
1
2
3
4
5
6
7
8
|
<!doctype html>
<script>
onmessage = function(e) {
parent.postMessage({
throttledFrameRequests: SpecialPowers.DOMWindowUtils.effectivelyThrottlesFrameRequests,
}, e.origin);
};
</script>
|