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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-filters.html

Issue 2253013007: [Devtools] Added test for negative lookaheads in network panel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test Created 4 years, 4 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 | « no previous file | third_party/WebKit/LayoutTests/http/tests/inspector/network/network-filters-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-filters.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-filters.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-filters.html
index 24f30ec939b876158cf562c553ad6217a8535d87..a7c25f2e402f06aa8b0bdb0e7b2f405325ed2743 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-filters.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-filters.html
@@ -7,10 +7,11 @@ function test()
{
InspectorTest.recordNetwork();
- var totalResourceCount = 3;
+ var totalResourceCount = 4;
InspectorTest.makeFetch("resources/style.css", {}, ensureAllResources);
InspectorTest.makeFetch("resources/abe.png", {}, ensureAllResources);
InspectorTest.makeFetch("resources/abe.png", {}, ensureAllResources);
+ InspectorTest.makeFetch("missing/foo.bar", {}, ensureAllResources);
var filterChecks = [{
filterText: "-.css",
isRegex: false
@@ -41,6 +42,9 @@ function test()
}, {
filterText: "png",
isRegex: false
+ }, {
+ filterText: "-missing",
+ isRegex: false
}];
var resourceCount = 0;
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/inspector/network/network-filters-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698