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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/referrer-policy/css-integration/internal-import-stylesheet.html

Issue 2780533002: Use Referrer-Policy headers for CSS stylesheets (Closed)
Patch Set: updates Created 3 years, 8 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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>CSS integration - image from imported stylesheet (internal)</title>
5 <script src="/resources/testharness.js"></script>
6 <script src="/resources/testharnessreport.js"></script>
7 <script src="/common/utils.js"></script>
8 <!-- Common global functions for referrer-policy tests. -->
9 <script src="/referrer-policy/generic/common.js"></script>
10 <meta name="referrer" content="origin">
11 </head>
12 <body>
13 <p>Check that resources from stylesheets (imported from internal
14 stylesheets) are loaded with the referrer and referrer policy from the
15 document.</p>
16
17 <div class="styled"></div>
18
19 <script>
20 var css_test = async_test("Image from imported stylesheet (internal).");
21 var id = token();
22 var url_prefix = location.protocol + "//www1." + location.hostname + ":" + location.port + "/referrer-policy/generic/subresource/";
23 var css_url = url_prefix + "stylesheet.py?id=" + id;
24 var img_url = url_prefix + "image.py?report-headers&id=" + id;
25
26 var style = document.createElement("style");
27 style.type = 'text/css';
28 style.appendChild(document.createTextNode("@import url('" + css_url + "'); "));
29 document.head.appendChild(style);
30 css_test.step_timeout(
31 queryXhr.bind(this, img_url,
32 function(message) {
33 css_test.step(function() {
34 assert_own_property(message, "headers");
35 assert_own_property(message, "referrer");
36 assert_equals(message.referrer, css_url);
37 });
38 css_test.done();
39 }),
40 1000);
41 </script>
42
43 <div id="log"></div>
44 </body>
45 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698