Index: third_party/WebKit/LayoutTests/inspector-protocol/debugger/call-frame-functionLocation.html |
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/debugger/call-frame-functionLocation.html b/third_party/WebKit/LayoutTests/inspector-protocol/debugger/call-frame-functionLocation.html |
deleted file mode 100644 |
index 84fab01dda59ba78d898df25450f9afef9217ddf..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/inspector-protocol/debugger/call-frame-functionLocation.html |
+++ /dev/null |
@@ -1,33 +0,0 @@ |
-<html> |
-<head> |
-<script type="text/javascript" src="../../http/tests/inspector-protocol/resources/inspector-protocol-test.js"></script> |
-<script> |
- |
-function testFunction() |
-{ |
- var a = 2; |
- debugger; |
-} |
- |
-function test() |
-{ |
- InspectorTest.sendCommand("Debugger.enable", {}); |
- InspectorTest.eventHandler["Debugger.paused"] = handleDebuggerPaused; |
- InspectorTest.sendCommand("Runtime.evaluate", { "expression": "setTimeout(testFunction, 0)" }); |
- |
- function handleDebuggerPaused(messageObject) |
- { |
- InspectorTest.log("Paused on 'debugger;'"); |
- var topFrame = messageObject.params.callFrames[0]; |
- topFrame.location.scriptId = "42"; |
- topFrame.functionLocation.scriptId = "42"; |
- InspectorTest.log("Top frame location: " + JSON.stringify(topFrame.location)); |
- InspectorTest.log("Top frame functionLocation: " + JSON.stringify(topFrame.functionLocation)); |
- InspectorTest.completeTest(); |
- } |
-} |
-</script> |
-</head> |
-<body onLoad="runTest();"> |
-</body> |
-</html> |