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

Side by Side Diff: chrome/test/data/predictors/append_child.js

Issue 2540803002: predictors: Add browsertests that check fetching through javascript. (Closed)
Patch Set: Address pasko comments. Created 4 years 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
(Empty)
1 var img = document.createElement("img");
2 img.src = "/handled-by-test/image.png"
3 document.body.appendChild(img);
4
5 var link = document.createElement("link");
6 link.rel = "stylesheet";
7 link.href = "/handled-by-test/style.css";
8 document.head.appendChild(link);
9
10 var script = document.createElement("script");
11 script.src = "/handled-by-test/script.js";
12 document.body.appendChild(script);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698