| Index: LayoutTests/platform/chromium/http/tests/misc/execute-and-return-value.html
|
| diff --git a/LayoutTests/platform/chromium/http/tests/misc/execute-and-return-value.html b/LayoutTests/platform/chromium/http/tests/misc/execute-and-return-value.html
|
| deleted file mode 100644
|
| index 4e306bbf0dfb5e5c24996b6facfacaab284a45ad..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/platform/chromium/http/tests/misc/execute-and-return-value.html
|
| +++ /dev/null
|
| @@ -1,30 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<body>
|
| -<script>
|
| -if (window.testRunner) {
|
| - testRunner.dumpAsText();
|
| -
|
| - var intTest = testRunner.evaluateScriptInIsolatedWorldAndReturnValue(0, "5");
|
| - document.body.appendChild(document.createTextNode('Expecting 5: ' + intTest));
|
| - document.body.appendChild(document.createElement('br'));
|
| -
|
| - var doubleTest = testRunner.evaluateScriptInIsolatedWorldAndReturnValue(0, "3.14");
|
| - document.body.appendChild(document.createTextNode('Expecting 3.14: ' + doubleTest));
|
| - document.body.appendChild(document.createElement('br'));
|
| -
|
| - var stringTest = testRunner.evaluateScriptInIsolatedWorldAndReturnValue(0, '"The quick brown dog."');
|
| - document.body.appendChild(document.createTextNode('Expecting "The quick brown dog.": ' + stringTest));
|
| - document.body.appendChild(document.createElement('br'));
|
| -
|
| - var booleanTest = testRunner.evaluateScriptInIsolatedWorldAndReturnValue(0, "!true");
|
| - document.body.appendChild(document.createTextNode('Expecting false: ' + booleanTest));
|
| - document.body.appendChild(document.createElement('br'));
|
| -
|
| - var nullTest = testRunner.evaluateScriptInIsolatedWorldAndReturnValue(0, "null");
|
| - document.body.appendChild(document.createTextNode('Expecting null: ' + nullTest));
|
| - document.body.appendChild(document.createElement('br'));
|
| -}
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|