Index: Source/web/tests/data/link-manifest-change.html |
diff --git a/Source/web/tests/data/link-manifest-change.html b/Source/web/tests/data/link-manifest-change.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9048b4cc2927818a4359c024782d31cbb39c64a5 |
--- /dev/null |
+++ b/Source/web/tests/data/link-manifest-change.html |
@@ -0,0 +1,35 @@ |
+<!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) |
+ |
+ document.head.removeChild(links[0]); |
+ // 1 time (= 9) |
+ </script> |
+</html> |