| <html> |
| <head> |
| <script src="../../http/tests/inspector/inspector-test.js"></script> |
| <script src="../../http/tests/inspector/elements-test.js"></script> |
| <script src="coverage-test.js"></script> |
| <script src="resources/coverage.js"></script> |
| |
| <link rel="stylesheet" type="text/css" href="resources/highlight-in-source.css"> |
| |
| <script> |
| async function test() |
| { |
| InspectorTest.startCoverage(); |
| await InspectorTest.evaluateInPagePromise("performActions()"); |
| await InspectorTest.stopCoverage(); |
| |
| InspectorTest.dumpCoverageListView(); |
| InspectorTest.completeTest(); |
| } |
| |
| </script> |
| </head> |
| |
| <body onload="runTest()"> |
| <p class="class"> |
| Tests the coverage list view after finishing recording in the Coverage view. |
| </p> |
| |
| </body> |
| </html> |