| Index: third_party/WebKit/LayoutTests/inspector/tracing/timeline-js-samping-codeobject-names.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-js-samping-codeobject-names.html b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-js-samping-codeobject-names.html
|
| deleted file mode 100644
|
| index 8e50ee1e4c0e08889242eac8f54cd2133064a51b..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-js-samping-codeobject-names.html
|
| +++ /dev/null
|
| @@ -1,41 +0,0 @@
|
| -<html>
|
| -<head>
|
| -<script src="../../http/tests/inspector/inspector-test.js"></script>
|
| -<script src="../tracing-test.js"></script>
|
| -<script>
|
| -function test()
|
| -{
|
| - Runtime.experiments.enableForTest("timelineTracingJSProfile");
|
| - var rawNames = [
|
| - "",
|
| - "Script:",
|
| - "Script:http://example.com/alina?",
|
| - "Script:http://example.com/:1",
|
| - "Script:http://example.com/:1:2",
|
| - "Script:http://example.com/:1:2:3",
|
| - "Script:http://example.com/:1:2:3x:4",
|
| - "Builtin:~foo1 http://url.com/foo.js",
|
| - "Builtin:~foo2 native http://url.com/foo.js:11",
|
| - "Builtin:*foo3 http://url.com/foo.js:11:22",
|
| - "Builtin:foo4 http://url.com/foo.js:11:22:33",
|
| - "Builtin:~ http://url.com/anonymous.js:123",
|
| - "Builtin:~ native http://url.com/anonymous.js:123",
|
| - "Builtin:~function name with spaces http://url.com/bar:123",
|
| - "Builtin:~native function name with spaces native http://url.com/bar.js:123",
|
| - "Builtin:~user_function_that_is_not_native http://url.com/bar.js:123",
|
| - "Builtin:~native http://url.com/bar.js:123"
|
| - ];
|
| -
|
| - for (var name of rawNames) {
|
| - var frame = WebInspector.TimelineJSProfileProcessor._buildCallFrame(name, "456");
|
| - InspectorTest.addResult(name + " => " + [frame.functionName, frame.url, frame.scriptId, frame.lineNumber, frame.columnNumber, frame.isNative].join(","));
|
| - }
|
| -
|
| - InspectorTest.completeTest();
|
| -}
|
| -
|
| -</script>
|
| -</head>
|
| -<body onload="runTest()">
|
| -</body>
|
| -</html>
|
|
|