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

Side by Side 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, 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 unified diff | Download patch
OLDNEW
1 (function () { 1 (function () {
2 var xhr = new XMLHttpRequest(); 2 var xhr = new XMLHttpRequest();
3 xhr.responseType = "blob"; 3 xhr.responseType = "blob";
4 xhr.open("GET", "../../../media/content/greenbox.png", true); 4 xhr.open("GET", "../../media/content/greenbox.png", true);
5 xhr.send(); 5 xhr.send();
6 })(); 6 })();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698