| description("Tests wrappers for ArrayBuffer objects are not GCed when they shouldn't be"); |
| let types = [Int8Array, Uint8Array, Uint8ClampedArray, Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array, Float64Array, DataView]; |
| debug("Test subclassing"); |
| types.forEach(function(type) { |
| C = class extends ArrayBuffer { } |
| shouldBeTrue("foo.buffer instanceof C"); |
| debug("Test properties"); |
| types.forEach(function(type) { |
| shouldBe("foo.buffer.bar", "1"); |
| types.forEach(function(type) { |
| shouldBeTrue("ws.has(foo.buffer)"); |