| Index: LayoutTests/inspector/sources/debugger/eval-on-pause-blocked.html
|
| diff --git a/LayoutTests/inspector/sources/debugger/eval-on-pause-blocked.html b/LayoutTests/inspector/sources/debugger/eval-on-pause-blocked.html
|
| deleted file mode 100644
|
| index e5b59ed7e5d5bea8658a6bf9fd45c183085f1aac..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/inspector/sources/debugger/eval-on-pause-blocked.html
|
| +++ /dev/null
|
| @@ -1,44 +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>
|
| -<meta http-equiv="Content-Security-Policy" content="script-src 'unsafe-inline'">
|
| -<script>
|
| -function testFunction()
|
| -{
|
| - var foo = 2012;
|
| - debugger;
|
| -}
|
| -
|
| -var test = function()
|
| -{
|
| - InspectorTest.startDebuggerTest(step1);
|
| -
|
| - function step1()
|
| - {
|
| - InspectorTest.runTestFunctionAndWaitUntilPaused(step2);
|
| - }
|
| -
|
| - function step2()
|
| - {
|
| - InspectorTest.evaluateInConsole("foo", step3);
|
| - }
|
| -
|
| - function step3(result)
|
| - {
|
| - InspectorTest.addResult("Evaluated in console in the top frame context: foo = " + result);
|
| - InspectorTest.completeDebuggerTest();
|
| - }
|
| -}
|
| -
|
| -</script>
|
| -</head>
|
| -<body onload="runTest()">
|
| -<p>
|
| -Test that evaluation in the context of top frame will not be blocked by Content-Security-Policy.
|
| -<a href="https://bugs.webkit.org/show_bug.cgi?id=77203">Bug 77203.</a>
|
| -</p>
|
| -
|
| -</body>
|
| -</html>
|
|
|