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

Side by Side Diff: LayoutTests/http/tests/css/css-resources-referrer-expected.html

Issue 314893003: Set referrer for CSS resources (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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 <style>
3 @font-face {
4 font-family: face;
5 src: local('Ahem');
6 }
7 .image {
8 background-image: url('../resources/square100.png');
9 }
10 </style>
11
12 <p>This page tests whether the referrer of css resources are set to the URL of t he stylesheet.</p>
13
14 <p>Following text should be rendered with ahem font.</p>
15
16 <div style="font-family: face;">
17 Text for webfont defined in document.
18 </div>
19 <div style="font-family: face;">
20 Text for webfont defined in stylesheet.
21 </div>
22 <div style="font-family: face;">
23 Text for webfont defined in imported stylesheet.
24 </div>
25
26 <p>Background image of following text should be dark blue.</p>
27
28 <div class="image">Image in document</div>
29 <div class="image">Image in stylesheet</div>
30 <div class="image">Image in imported stylesheet</div>
31
32 <div class="image">Image set in document</div>
33 <div class="image">Image set in stylesheet</div>
34 <div class="image">Image set in imported stylesheet</div>
OLDNEW
« no previous file with comments | « LayoutTests/http/tests/css/css-resources-referrer.html ('k') | LayoutTests/http/tests/css/css-resources-referrer-srcdoc.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698