���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /home/real/node-v13.0.1/test/fixtures/wpt/url/ |
<!doctype html> <meta charset=utf-8> <script src=/resources/testharness.js></script> <script src=/resources/testharnessreport.js></script> <div id=log></div> <script> promise_test(() => fetch("resources/setters_tests.json").then(res => res.json()).then(runURLSettersTests), "Loading data…"); function runURLSettersTests(all_test_cases) { for (var attribute_to_be_set in all_test_cases) { if (attribute_to_be_set == "comment") { continue; } var test_cases = all_test_cases[attribute_to_be_set]; for(var i = 0, l = test_cases.length; i < l; i++) { var test_case = test_cases[i]; var name = "Setting <" + test_case.href + ">." + attribute_to_be_set + " = '" + test_case.new_value + "'"; if ("comment" in test_case) { name += " " + test_case.comment; } test(function() { var url = new URL(test_case.href); url[attribute_to_be_set] = test_case.new_value; for (var attribute in test_case.expected) { assert_equals(url[attribute], test_case.expected[attribute]) } }, "URL: " + name) test(function() { var url = document.createElement("a"); url.href = test_case.href; url[attribute_to_be_set] = test_case.new_value; for (var attribute in test_case.expected) { assert_equals(url[attribute], test_case.expected[attribute]) } }, "<a>: " + name) test(function() { var url = document.createElement("area"); url.href = test_case.href; url[attribute_to_be_set] = test_case.new_value; for (var attribute in test_case.expected) { assert_equals(url[attribute], test_case.expected[attribute]) } }, "<area>: " + name) } } } </script>