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

Side by Side Diff: LayoutTests/http/tests/security/mixedContent/resources/frame-with-insecure-css-resources.html

Issue 816923002: Switch FontFaceSet#ready from a method to an attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <link rel="stylesheet" href="fetch-insecure-css-resources.css"> 4 <link rel="stylesheet" href="fetch-insecure-css-resources.css">
5 </head> 5 </head>
6 <body> 6 <body>
7 This background image should be 20px blue square. 7 This background image should be 20px blue square.
8 <script> 8 <script>
9 document.fonts.ready().then(function() { 9 document.fonts.ready.then(function() {
10 if (window.opener) 10 if (window.opener)
11 window.opener.postMessage('done', '*'); 11 window.opener.postMessage('done', '*');
12 }); 12 });
13 </script> 13 </script>
14 </body> 14 </body>
15 </html> 15 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698