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

Unified Diff: LayoutTests/http/tests/inspector/cache-storage/cache-names.html

Issue 1044203004: [Storage] Cache storage inspection on all the frames! (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: comments and rebase Created 5 years, 8 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/inspector/cache-storage/cache-names.html
diff --git a/LayoutTests/http/tests/inspector/cache-storage/cache-names.html b/LayoutTests/http/tests/inspector/cache-storage/cache-names.html
new file mode 100644
index 0000000000000000000000000000000000000000..61bf78ea0d9e95d1fe2c74f4aa2f700c02ffca5f
--- /dev/null
+++ b/LayoutTests/http/tests/inspector/cache-storage/cache-names.html
@@ -0,0 +1,40 @@
+<html>
+<head>
+<script src="../inspector-test.js"></script>
+<script src="cache-storage-test.js"></script>
+<script>
+function test()
+{
+ var cacheStorageModel = WebInspector.ServiceWorkerCacheModel.fromTarget(WebInspector.targetManager.mainTarget());
+ cacheStorageModel.enable();
+
+ function errorAndExit(error)
+ {
+ if (error)
+ InspectorTest.addResult(error);
+ InspectorTest.completeTest();
+ }
+
+ function main()
+ {
+ InspectorTest.clearAllCaches()
+ .then(InspectorTest.dumpCacheTree)
+ .then(InspectorTest.createCache.bind(this, "testCache1"))
+ .then(InspectorTest.dumpCacheTree)
+ .then(InspectorTest.createCache.bind(this, "testCache2"))
+ .then(InspectorTest.createCache.bind(this, "testCache3"))
+ .then(InspectorTest.createCache.bind(this, "testCache4"))
+ .then(InspectorTest.dumpCacheTree)
+ .then(InspectorTest.clearAllCaches)
+ .then(InspectorTest.completeTest)
+ .catch(errorAndExit);
+ }
+
+ InspectorTest.waitForCacheRefresh(main);
+}
+</script>
+</head>
+<body onload="runTest()">
+<p>Tests that cache names are correctly loaded and displayed in the inspector.</p>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698