forked from mirrors/gecko-dev
		
	 758cde27f6
			
		
	
	
		758cde27f6
		
	
	
	
	
		
			
			Automatic update from web-platform-tests [css-font-loading] Add test to make sure that FontFaceSet.load() operates on the up-to-date @font-face blocks (#30491) -- wpt-commits: 3225cefbbcb105a39be62b8dd224b9ac3c2c9c16 wpt-pr: 30491
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			876 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			876 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| <head id="head">
 | |
| <meta charset="utf-8">
 | |
| <link rel="author" title="Myles C. Maxfield" href="mmaxfield@apple.com">
 | |
| <link rel="help" href="https://drafts.csswg.org/css-font-loading-3/#document-font-face-set">
 | |
| <meta name="assert" content="Ensure that calling FontFaceSet.load() operates on the up-to-date @font-face blocks." />
 | |
| <script src="/resources/testharness.js"></script>
 | |
| <script src="/resources/testharnessreport.js"></script>
 | |
| <style id="style">
 | |
| @font-face {
 | |
|     font-family: "WebFont";
 | |
|     src: url("resources/Rochester.otf") format("opentype");
 | |
| }
 | |
| </style>
 | |
| </head>
 | |
| <body>
 | |
| <script>
 | |
| promise_test(async function(t) {
 | |
|     let fonts = document.fonts;
 | |
|     document.getElementById("head").removeChild(document.getElementById("style"));
 | |
|     let result = await fonts.load("12px 'WebFont'");
 | |
|     assert_equals(result.length, 0);
 | |
| });
 | |
| </script>
 | |
| </body>
 | |
| </html>
 |