blob: 01f06d2f4976851b2aabb66d07a13ad3c0dd8392 [file] [log] [blame]
var exception;
try {
new WebAssembly.Memory({ initial: 0x10001, maximum: 0x10001 }).buffer;
} catch (e) {
exception = e;
}
if (exception != "RangeError: WebAssembly.Memory 'initial' page count is too large")
throw "FAILED, exception was: " + exception;