https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 76fcd56a3903229fb0d9fa84fc1fd91cad108ba9 authored by Hwanseung Lee on 19 March 2018, 01:17:13 UTC
[css-typed-om] support some properties -2-
Tip revision: 76fcd56
create_multiple_memory.worker.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.

// The WebAssembly spec doesn't specify a limit on how many Memory objects can
// be allocated. This test makes sure we can have at least two at once.

importScripts("/resources/testharness.js");
test(function () {
  const mem1 = new WebAssembly.Memory({initial: 1});
  const mem2 = new WebAssembly.Memory({initial: 1});
}, "WebAssembly#CreateMultipleMemories.");
done();
back to top