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

Unified Diff: LayoutTests/http/tests/inspector/network/network-fetch.html

Issue 1259393002: DevTools: add support for logging fetch requests when XHR logging is enabled (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fixed the test Created 5 years, 5 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/network/network-fetch.html
diff --git a/LayoutTests/http/tests/inspector/network/network-xhr-sync.html b/LayoutTests/http/tests/inspector/network/network-fetch.html
similarity index 79%
copy from LayoutTests/http/tests/inspector/network/network-xhr-sync.html
copy to LayoutTests/http/tests/inspector/network/network-fetch.html
index 58b9e16237ea22ab82956e0f440ab85a86cd71cd..1bc5589a0d3665935e9d266d5e471c64ba2132cc 100644
--- a/LayoutTests/http/tests/inspector/network/network-xhr-sync.html
+++ b/LayoutTests/http/tests/inspector/network/network-fetch.html
@@ -6,7 +6,7 @@
function test()
{
InspectorTest.recordNetwork();
- InspectorTest.makeSimpleXHR("GET", "resources/resource.php", false, step2);
+ InspectorTest.makeFetch("resources/resource.php", {}, step2);
function step2()
{
@@ -29,9 +29,6 @@ function test()
</script>
</head>
<body onload="runTest()">
- <p>
- Tests XHR network resource type and content for synchronous requests.
-<a href="https://bugs.webkit.org/show_bug.cgi?id=61205">Bug 61205</a>
-</p>
+<p>Tests fetch network resource type and content.</p>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698