blob: 244a0ba5290833e6e90d617bb73253e71eb210d3 [file] [log] [blame]
// Copyright (C) 2015 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-properties-of-typedarray-prototype-objects
description: >
Uint8ClampedArray.prototype is not a TypedArray instance object.
info: |
A TypedArray prototype object is an ordinary object. It does not have
a [[ViewedArrayBuffer]] or any other of the internal slots that are
specific to TypedArray instance objects.
features: [TypedArray]
---*/
assert.throws(TypeError, function() {
Uint8ClampedArray.prototype.buffer;
});