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

Unified Diff: chrome/test/data/predictors/html_subresources.html

Issue 2449323005: predictors: Basic browsertest checks predictor learning. (Closed)
Patch Set: Get rid of mime type. Created 4 years, 1 month 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 | « chrome/test/BUILD.gn ('k') | testing/buildbot/filters/browser-side-navigation.linux.browser_tests.filter » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/predictors/html_subresources.html
diff --git a/chrome/test/data/predictors/html_subresources.html b/chrome/test/data/predictors/html_subresources.html
new file mode 100644
index 0000000000000000000000000000000000000000..8048601a22480f20dd8a6b3dd676c771b79bf54c
--- /dev/null
+++ b/chrome/test/data/predictors/html_subresources.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>Subresources collection</title>
+<html>
+ <head>
+ <link rel="stylesheet" href="style.css">
+ <style type="text/css">
+ @font-face {
+ font-family: "Whatever";
+ src: url(font.ttf) format("truetype");
+ }
+ p.customfont {
+ font-family: "Whatever", Verdana;
+ }
+ </style>
+ </head>
+ <script src="script.js"></script>
+ <body>
+ <img src="image.png">
+ <p class="customfont">Hello world!</p>
+ </body>
+</html>
« no previous file with comments | « chrome/test/BUILD.gn ('k') | testing/buildbot/filters/browser-side-navigation.linux.browser_tests.filter » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698