| Index: LayoutTests/inspector/sources/debugger/debugger-eval-on-call-frame.html
|
| diff --git a/LayoutTests/inspector/sources/debugger/debugger-eval-on-call-frame.html b/LayoutTests/inspector/sources/debugger/debugger-eval-on-call-frame.html
|
| deleted file mode 100644
|
| index 0bfd1e1a1eb96172f2bd3cbed8d01f47e1c4ebe2..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/inspector/sources/debugger/debugger-eval-on-call-frame.html
|
| +++ /dev/null
|
| @@ -1,48 +0,0 @@
|
| -<html>
|
| -<head>
|
| -<script src="../../../http/tests/inspector/inspector-test.js"></script>
|
| -<script src="../../../http/tests/inspector/console-test.js"></script>
|
| -<script src="../../../http/tests/inspector/debugger-test.js"></script>
|
| -<script>
|
| -
|
| -var a = 1;
|
| -function testFunction()
|
| -{
|
| - var a = 2;
|
| - debugger;
|
| -}
|
| -
|
| -var test = function()
|
| -{
|
| - InspectorTest.startDebuggerTest(step1);
|
| -
|
| - function step1()
|
| - {
|
| - InspectorTest.runTestFunctionAndWaitUntilPaused(step2);
|
| - }
|
| -
|
| - function step2()
|
| - {
|
| - InspectorTest.evaluateInConsole("a", step3);
|
| - }
|
| -
|
| - function step3(result)
|
| - {
|
| - InspectorTest.addResult("Evaluated in console in the top frame context: a = " + result);
|
| - InspectorTest.completeDebuggerTest();
|
| - }
|
| -}
|
| -
|
| -</script>
|
| -</head>
|
| -
|
| -<body onload="runTest()">
|
| -<p>
|
| -Test that evaluation in the context of top frame will see values
|
| -of its local variables, even if there are global variables with
|
| -same names. On success the test will print a = 2(value of the
|
| -local variable a). <a href="https://bugs.webkit.org/show_bug.cgi?id=47358">Bug 47358.</a>
|
| -</p>
|
| -
|
| -</body>
|
| -</html>
|
|
|