Merge "Fix webgl crash issue." into tizen_2.2
[framework/web/webkit-efl.git] / PerformanceTests / Bindings / typed-array-construct-from-typed.html
1 <!DOCTYPE html>
2 <body>
3 <script src="../resources/runner.js"></script>
4 <script>
5
6 var length = 10000000;
7 var source = new Uint8Array(length);
8 for (var i = 0; i < length; i++) {
9     source[i] = i;
10 }
11
12 PerfTestRunner.run(function() {
13     var target = new Float64Array(source);
14 });
15 </script>
16 </body>