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

Unified Diff: LayoutTests/http/tests/fetch/resources/fetch-access-control-iframe.html

Issue 1267263003: Rename fetch layout tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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/http/tests/fetch/resources/fetch-access-control-iframe.html
diff --git a/LayoutTests/http/tests/fetch/resources/fetch-access-control-iframe.html b/LayoutTests/http/tests/fetch/resources/fetch-access-control-iframe.html
deleted file mode 100644
index 6a6c0b4f905b05d514cba75e7076b31c861619c3..0000000000000000000000000000000000000000
--- a/LayoutTests/http/tests/fetch/resources/fetch-access-control-iframe.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<script src = "fetch-test-options.js"></script>
-<script src = "fetch-access-control-util.js"></script>
-<script>
-function onMessage(event) {
- var script = document.createElement('script');
- script.src = event.data.url;
- script.addEventListener(
- 'error',
- function() { report({jsonpResult:'error'}); });
- document.body.appendChild(script);
-}
-function report(data) {
- window.parent.postMessage(
- data,
- BASE_ORIGIN);
-}
-function onload() {
- window.addEventListener('message', onMessage, false);
-}
-window.addEventListener('load', onload);
-</script>
« no previous file with comments | « LayoutTests/http/tests/fetch/generate.py ('k') | LayoutTests/http/tests/fetch/resources/fetch-access-control-util.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698