| OLD | NEW |
| (Empty) | |
| 1 <?php |
| 2 header("Content-Type: text/html;charset=utf-8", false); |
| 3 header("Link: <http://127.0.0.1:8000/preload/resources/charset.js>;rel=preload;a
s=script", false); |
| 4 ?> |
| 5 <script src="../resources/testharness.js"></script> |
| 6 <script src="../resources/testharnessreport.js"></script> |
| 7 <script> |
| 8 var t = async_test("Makes sure that header preloaded resources are downloade
d with the document's charset"); |
| 9 window.addEventListener("load", t.step_func(function() { |
| 10 assert_equals(window.preload_header, 'Кириллиця'); |
| 11 t.done(); |
| 12 })); |
| 13 </script> |
| 14 <script src="resources/charset.js"></script> |
| OLD | NEW |