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

Unified Diff: sky/tests/services/iframe-service-provider.sky

Issue 1215063003: Remove Sky tests that we don't intend to port to the new world (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 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: sky/tests/services/iframe-service-provider.sky
diff --git a/sky/tests/services/iframe-service-provider.sky b/sky/tests/services/iframe-service-provider.sky
deleted file mode 100644
index b8269592bbfed9e88401d581981bec1af51bd259..0000000000000000000000000000000000000000
--- a/sky/tests/services/iframe-service-provider.sky
+++ /dev/null
@@ -1,17 +0,0 @@
-<html>
-<import src="../resources/dump-as-text.sky" />
-<iframe src="about:blank" />
-<div id="result1">FAIL</div>
-<div id="result2">FAIL</div>
-<script>
-var elmt = document.querySelector('iframe');
-
-var pipe1 = elmt.takeServicesHandle();
-document.getElementById("result1").textContent =
- pipe1 ? "PASS: " + pipe1 : "FAIL: elmt.takeServicesHandle is missing";
-
-var pipe2 = elmt.takeExposedServicesHandle();
-document.getElementById("result2").textContent =
- pipe2 ? "PASS: " + pipe2 : "FAIL: elmt.takeExposedServicesHandle is missing";
-</script>
-</html>

Powered by Google App Engine
This is Rietveld 408576698