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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/preload/external_css_import_preload.html

Issue 1819593002: Preload scan external css for @import (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 9 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/preload/external_css_import_preload.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/preload/external_css_import_preload.html b/third_party/WebKit/LayoutTests/http/tests/preload/external_css_import_preload.html
new file mode 100644
index 0000000000000000000000000000000000000000..c9117b367403d50f52939d5bb434b1c362182bb3
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/preload/external_css_import_preload.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<script src="../resources/testharness.js"></script>
+<script src="../resources/testharnessreport.js"></script>
+<script src="../resources/slow-script.pl?delay=500"></script>
+<script>
+var t = async_test("We should scan external css for @imports and preload them");
+var boundedStart = window.performance.now();
+</script>
+<link rel="stylesheet" type="text/css" href="../resources/css_with_import.css"></link>
+<script>
+window.addEventListener("load", t.step_func(function() {
+ var entry = performance.getEntriesByType("resource")[3];
Yoav Weiss 2016/03/30 21:38:31 You need to make sure that the entry you have here
+ assert_less_than(entry.startTime, boundedStart);
+ t.done();
+}));
+</script>

Powered by Google App Engine
This is Rietveld 408576698