Chromium Code Reviews| Index: content/test/data/manifest/dynamic-manifest.html |
| diff --git a/content/test/data/manifest/dynamic-manifest.html b/content/test/data/manifest/dynamic-manifest.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d1347d4322c18679c577e361d2ee9543b36d61ac |
| --- /dev/null |
| +++ b/content/test/data/manifest/dynamic-manifest.html |
| @@ -0,0 +1,18 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<head> |
| +</head> |
| +<body> |
| +</body> |
| +<script> |
| + function setManifestTo(url) { |
| + // Clear everything. |
| + document.head.innerHTML = ''; |
| + |
| + var link = document.createElement('link'); |
| + link.rel = 'manifest'; |
| + link.href = url; |
| + document.head.appendChild(link); |
| + } |
| +</script> |
| +</html> |