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

Unified Diff: third_party/WebKit/LayoutTests/inspector-protocol/resources/script.js

Issue 2961493002: [DevTools] Migrate inspector-protocol/{input,network} tests to new harness (Closed)
Patch Set: minor fixes Created 3 years, 6 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/inspector-protocol/resources/script.js
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/network/resources/script.js b/third_party/WebKit/LayoutTests/inspector-protocol/resources/script.js
similarity index 60%
rename from third_party/WebKit/LayoutTests/inspector-protocol/network/resources/script.js
rename to third_party/WebKit/LayoutTests/inspector-protocol/resources/script.js
index 1edd7bcfb4563357ceb8561460e24fd84b6d3ef5..cc8d2be00bc1be9d8feb525f81b1b6550c64979b 100644
--- a/third_party/WebKit/LayoutTests/inspector-protocol/network/resources/script.js
+++ b/third_party/WebKit/LayoutTests/inspector-protocol/resources/script.js
@@ -1,6 +1,6 @@
(function () {
var xhr = new XMLHttpRequest();
xhr.responseType = "blob";
- xhr.open("GET", "../../../media/content/greenbox.png", true);
+ xhr.open("GET", "../../media/content/greenbox.png", true);
xhr.send();
})();

Powered by Google App Engine
This is Rietveld 408576698