Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Side by Side Diff: LayoutTests/inspector/tracing/timeline-js-samping-codeobject-names.html

Issue 1204473005: DevTools: Tweak v8 code objects name parsing. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: added a test. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/inspector/tracing/timeline-js-samping-codeobject-names-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/inspector/tracing/timeline-js-samping-codeobject-names-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698