ff43bbe613
Bug: chromium:825087 Change-Id: I2eb163e5399e98da75cd1e4ad6f0a62d6da4ae2c Reviewed-on: https://chromium-review.googlesource.com/978840 Reviewed-by: Deepti Gandluri <gdeepti@chromium.org> Commit-Queue: Eric Holk <eholk@chromium.org> Cr-Commit-Position: refs/heads/master@{#52198}
10 lines
300 B
JavaScript
10 lines
300 B
JavaScript
// Copyright 2018 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
PAGES = 10;
|
|
memory = new WebAssembly.Memory({initial: PAGES});
|
|
buffer = memory.buffer;
|
|
memory.grow();
|
|
WebAssembly.validate(buffer);
|