Update sdk/platform-tools to version 26.0.0.
[android_tools.git] / sdk / platform-tools / systrace / catapult / telemetry / telemetry / internal / testing / 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>