https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 9281e3c0d16246473fd97107aa0afc893decc100 authored by Anne van Kesteren on 03 May 2018, 06:41:13 UTC
cleanup
Tip revision: 9281e3c
many-memories.window.js
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// This test makes sure browsers behave reasonably when asked to allocate a
// larger number of WebAssembly.Memory objects at once.
test(function() {
  let memories = [];
  try {
    for (let i = 0; i < 20; i++) {
      memories.push(new WebAssembly.Memory({initial: 1}));
    }
  } catch (e) {
    if (e instanceof RangeError) {
      return;
    }
    throw e;
  }
}, "WebAssembly#CreateManyMemories");
back to top