(maxSize)
| 470 | |
| 471 | // https://w3c.github.io/resource-timing/#dom-performance-setresourcetimingbuffersize |
| 472 | function setResourceTimingBufferSize(maxSize) { |
| 473 | // If the maxSize parameter is less than resource timing buffer current |
| 474 | // size, no PerformanceResourceTiming objects are to be removed from the |
| 475 | // performance entry buffer. |
| 476 | resourceTimingBufferSizeLimit = maxSize; |
| 477 | } |
| 478 | |
| 479 | function setDispatchBufferFull(fn) { |
| 480 | dispatchBufferFull = fn; |
no outgoing calls
no test coverage detected
searching dependent graphs…