Revision 2df42de942a79a35986b4d5bb8e2e1424de5e9f8 authored by plehegar on 21 June 2016, 18:51:17 UTC, committed by plehegar on 21 June 2016, 18:51:17 UTC
1 parent 579c87e
Raw File
Uint8ClampedArray_length.html
<!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>
back to top