| OLD | NEW |
| (Empty) | |
| 1 <html> |
| 2 <head> |
| 3 <script src="../../http/tests/inspector/inspector-test.js"></script> |
| 4 <script src="../tracing-test.js"></script> |
| 5 <script> |
| 6 function test() |
| 7 { |
| 8 Runtime.experiments.enableForTest("timelineTracingJSProfile"); |
| 9 var rawNames = [ |
| 10 "", |
| 11 "Script:", |
| 12 "Script:http://example.com/alina?", |
| 13 "Script:http://example.com/:1", |
| 14 "Script:http://example.com/:1:2", |
| 15 "Script:http://example.com/:1:2:3", |
| 16 "Script:http://example.com/:1:2:3x:4", |
| 17 "Builtin:~foo1 http://url.com/foo.js", |
| 18 "Builtin:~foo2 http://url.com/foo.js:11", |
| 19 "Builtin:*foo3 http://url.com/foo.js:11:22", |
| 20 "Builtin:foo4 http://url.com/foo.js:11:22:33", |
| 21 "Builtin:~ http://url.com/anonymous.js:123", |
| 22 "Builtin:~function name with spaces http://url.com/anonymous.js:123" |
| 23 ]; |
| 24 |
| 25 for (var name of rawNames) { |
| 26 var frame = WebInspector.TimelineJSProfileProcessor._buildCallFrame(name
, "456"); |
| 27 InspectorTest.addResult(name + " => " + [frame.functionName, frame.url,
frame.scriptId, frame.lineNumber, frame.columnNumber].join(",")); |
| 28 } |
| 29 |
| 30 InspectorTest.completeTest(); |
| 31 } |
| 32 |
| 33 </script> |
| 34 </head> |
| 35 <body onload="runTest()"> |
| 36 </body> |
| 37 </html> |
| OLD | NEW |