blob: c8babf7a10bfe90e043b3e9bf22a4d3e579c09bc [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../../resources/js-test.js"></script>
</head>
<body>
<script>
description('Excessively long port sequences should gracefully fail.');
let ports = [];
ports.length = 1<<29;
shouldThrow('new MessageEvent("message", {ports:ports})');
</script>
</body>
</html>