OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script type="text/javascript" src="../../http/tests/inspector-protocol/resource
s/protocol-test.js"></script> | 3 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspecto
r-protocol-test.js"></script> |
4 <script> | 4 <script> |
5 function collectProfiles() | 5 function collectProfiles() |
6 { | 6 { |
7 console.profile(); | 7 console.profile(); |
8 console.profile("titled"); | 8 console.profile("titled"); |
9 console.profileEnd(); | 9 console.profileEnd(); |
10 console.profileEnd(); | 10 console.profileEnd(); |
11 } | 11 } |
12 | 12 |
13 function test() | 13 function test() |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 } | 46 } |
47 </script> | 47 </script> |
48 </head> | 48 </head> |
49 <body onload="runTest()"> | 49 <body onload="runTest()"> |
50 <p> | 50 <p> |
51 Tests that "console.profileEnd()" does not cause crash.<br> | 51 Tests that "console.profileEnd()" does not cause crash.<br> |
52 <a href="https://bugs.webkit.org/show_bug.cgi?id=105759">Bug 105759.</a><br> | 52 <a href="https://bugs.webkit.org/show_bug.cgi?id=105759">Bug 105759.</a><br> |
53 </p> | 53 </p> |
54 </body> | 54 </body> |
55 </html> | 55 </html> |
OLD | NEW |