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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/cachestorage/resources/ignore-search-with-credentials-iframe.html

Issue 1578363009: CacheStorage: Add ignoreSearch option to cache.matchAll(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 10 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: third_party/WebKit/LayoutTests/http/tests/cachestorage/resources/ignore-search-with-credentials-iframe.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/cachestorage/resources/credentials-iframe.html b/third_party/WebKit/LayoutTests/http/tests/cachestorage/resources/ignore-search-with-credentials-iframe.html
similarity index 60%
copy from third_party/WebKit/LayoutTests/http/tests/cachestorage/resources/credentials-iframe.html
copy to third_party/WebKit/LayoutTests/http/tests/cachestorage/resources/ignore-search-with-credentials-iframe.html
index 00702df9e5b1f2b4b89d8e096121dd97e81198c2..b2ee4ff96e9a53faaa184efcd9400932c1b48528 100644
--- a/third_party/WebKit/LayoutTests/http/tests/cachestorage/resources/credentials-iframe.html
+++ b/third_party/WebKit/LayoutTests/http/tests/cachestorage/resources/ignore-search-with-credentials-iframe.html
@@ -20,19 +20,4 @@ function xhr(url, username, password) {
});
}
-window.onmessage = function(e) {
- Promise.all(e.data.map(function(item) {
- return xhr(item.name, item.username, item.password);
- }))
- .then(function() {
- navigator.serviceWorker.controller.postMessage('keys');
- navigator.serviceWorker.onmessage = function(e) {
- window.parent.postMessage(e.data, '*');
- };
- });
-};
-
</script>
-<body>
-Hello? Yes, this is iframe.
-</body>

Powered by Google App Engine
This is Rietveld 408576698