| Index: LayoutTests/platform/chromium/permissionclient/script-permissions.html
|
| diff --git a/LayoutTests/platform/chromium/permissionclient/script-permissions.html b/LayoutTests/platform/chromium/permissionclient/script-permissions.html
|
| deleted file mode 100644
|
| index 8dbc88ca1d707d1ec560fcd6e29d06a7da80e24e..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/platform/chromium/permissionclient/script-permissions.html
|
| +++ /dev/null
|
| @@ -1,32 +0,0 @@
|
| -<html>
|
| -<head>
|
| -<script>
|
| -if (window.testRunner) {
|
| - testRunner.dumpAsText();
|
| - testRunner.dumpPermissionClientCallbacks();
|
| -}
|
| -
|
| -function log(a)
|
| -{
|
| - document.getElementById("log").innerHTML += a + "<br>";
|
| -}
|
| -
|
| -function test()
|
| -{
|
| - if (window.testRunner && testRunner.setScriptsAllowed)
|
| - testRunner.setScriptsAllowed(false);
|
| - else
|
| - log("This test requires testRunner.setScriptsAllowed, so it be can't run in a browser.");
|
| -
|
| - // Try to load an external script.
|
| - var script = document.createElement('script');
|
| - script.src = "resources/script.js";
|
| - document.getElementById("script").appendChild(script);
|
| -}
|
| -</script>
|
| -</head>
|
| -<body onload="test()">
|
| -<div id="script"></div>
|
| -<div id="log"></div>
|
| -</body>
|
| -</html>
|
|
|