3 <script src="../../LayoutTests/http/tests/inspector/inspector-test.js"></script>
4 <script src="../../LayoutTests/inspector/profiler/heap-snapshot-test.js"></script>
5 <script src="performance-test.js"></script>
6 <script src="heap-snapshot-performance-test.js"></script>
9 function makeLinkedList(n)
13 node = { next: node };
17 function makeDoubleLinkedList(n)
22 head = { next: head };
23 head.next.prev = head;
25 return { head: head, tail: tail };
28 var list = makeLinkedList(20000);
29 var double_list = makeDoubleLinkedList(5000);
33 <body onload="runTest()">