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

Unified Diff: sky/engine/web/tests/data/link-manifest-change.html

Issue 1210153009: Remove (almost all of) //sky/engine/web (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
« no previous file with comments | « sky/engine/web/tests/data/large-div.html ('k') | sky/engine/web/tests/data/listener/listener_leak1.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/web/tests/data/link-manifest-change.html
diff --git a/sky/engine/web/tests/data/link-manifest-change.html b/sky/engine/web/tests/data/link-manifest-change.html
deleted file mode 100644
index fabec0c545360065ed5aa60938ea59426a8f2124..0000000000000000000000000000000000000000
--- a/sky/engine/web/tests/data/link-manifest-change.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!DOCTYPE html>
-<!-- This file is meant to test how many times the WebFrameClient will be
- notified of a change in the current manifest URL associated with the document. -->
-<html>
- <head>
- <link rel='manifest' href=''>
- <link rel='manifest'>
- <link rel='manifest foo'>
- <link rel='manifest' crossorigin foo bar>
- <!-- 4 times (= 4) -->
- </head>
- <body>
- <link rel='manifest'>
- <!-- 1 time (= 5) -->
- </body>
- <script>
- function createLink(href, rel) {
- var link = document.createElement('link');
- link.href = href;
- link.rel = rel;
- return link;
- }
- var links = document.getElementsByTagName('link');
- var link = document.createElement('link');
-
- document.head.appendChild(createLink('foo.json', 'manifest'));
- document.head.appendChild(createLink('foo.json', ''));
- document.head.appendChild(createLink('foo.json', 'manifest'));
- document.head.insertBefore(createLink('foo.json', 'manifest'), links[0]);
- // 3 times (= 8)
-
- links[0].crossOrigin = 'use-credentials';
- links[0].media = '';
- links[0].type = 'image/gif';
- // 2 times (= 10)
-
- links[0].href = 'bar.json';
- links[0].rel = 'blah';
- links[0].rel = 'manifest';
- // 3 times (= 13)
-
- document.head.removeChild(links[0]);
- // 1 time (= 14)
- </script>
-</html>
« no previous file with comments | « sky/engine/web/tests/data/large-div.html ('k') | sky/engine/web/tests/data/listener/listener_leak1.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698