Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Unified Diff: LayoutTests/platform/chromium/http/tests/misc/execute-and-return-value.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698