(fsets, size)
| 140 | const indices = []; |
| 141 | |
| 142 | function alloc_fs(fsets, size) { |
| 143 | for (let i = 0; i < size / 2; i++) { |
| 144 | const fset = document.createElement("frameset"); |
| 145 | fset.rows = rows; |
| 146 | fset.cols = rows; |
| 147 | fsets.push(fset); |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | // the first call to either replaceState/pushState is likely to allocate a |
| 152 | // JSC::IsoAlignedMemoryAllocator near the SSV it creates. this prevents |