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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/resources/font-face.html

Issue 2207833002: Call FetchContext::dispatchWillSendRequest() only if an actual load is started (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2785
Patch Set: Rebase. Created 4 years, 4 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/http/tests/inspector/network/resources/font-face.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/resources/font-face.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/resources/font-face.html
new file mode 100644
index 0000000000000000000000000000000000000000..835129f7c6bddbb3769066936bbd6a4f5f296e0a
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/resources/font-face.html
@@ -0,0 +1,17 @@
+<html>
+<head>
+<style>
+@font-face {
+ font-family: Unused;
+ src: url("unused.ttf");
+}
+@font-face {
+ font-family: Used;
+ src: url("used.ttf");
+}
+</style>
+</head>
+<body onload="fetch('done')">
+<span style="font-family: Used">Test</span>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698