Change next_proto member type.
[chromium-blink-merge.git] / tools / telemetry / unittest_data / create_many_objects.html
blob489356391ffd606e4105632cf93bebc454135740
1 <!DOCTYPE html>
2 <script>
3 var maxObjects = 100000;
5 var TestRunner = function() {
6 this.isDone = false;
7 };
9 var testRunner = null;
10 window.onload = function () {
11 testRunner = new TestRunner();
13 // Create a lot of objects can trigger a Blink GC.
14 for (var i = 0; i < maxObjects; i++) {
15 new TextDecoder();
18 testRunner.isDone = true;
20 </script>