| <script src="../resources/runner.js"></script> |
| PerfTestRunner.measureRunsPerSecond({ |
| description: "This benchmark tests CSS Selector performance with querySelector().", |
| for (var i = 0; i < 100; i++) { |
| document.querySelector("p:first-child"); |
| document.querySelector("p:last-child"); |
| document.querySelector("p:first-of-type"); |
| document.querySelector("p:last-of-type"); |
| document.querySelector("p:nth-child(4n+3)"); |
| document.querySelector("p:nth-last-child(4n+3)"); |
| document.querySelector("p:nth-of-type(4n+3)"); |
| document.querySelector("p:nth-last-of-type(4n+3)"); |