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

Side by Side Diff: LayoutTests/http/tests/css/css-resources-referrer-srcdoc-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 <iframe srcdoc="
3 <style>
4 @font-face {
5 font-family: ahem;
6 src: local('Ahem');
7 }
8 .image {
9 background-image: url('../resources/square100.png');
10 }
11 </style>
12
13 <div style='font-family: ahem;'>
14 This should be rendered with ahem font.
15 </div>
16 <div class='image'>
17 Image in iframe. Background should be dark blue.
18 </div>
19 <div class='image'>
20 Image set in iframe. Background should be dark blue.
21 </div>
22 "></iframe>
23 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698