summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/typedarrays/Uint8ClampedArray_length.html
blob: 6551cd780defe1e6b389f6dda05fb6a0730f1ce4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<meta charset="utf-8">
<title>Typed Arrays Test: Uint8ClampedArray length</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<link rel="help" href="http://www.khronos.org/registry/typedarray/specs/latest/#7.1">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>

test(function() {
  var arr = new Uint8ClampedArray(8);

  test(function() {
    assert_equals(arr.length, 8, "The Uint8ClampedArray.length");
  }, "Check if the Uint8ClampedArray.length should be the value given by constructor");

  test(function() {
    var len = arr.length;
    arr.length = len + 1;
    assert_equals(arr.length, len, "The Uint8ClampedArray.length");
  }, "Check if the Uint8ClampedArray.length is readonly");
});

</script>