location_href.html (399B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <title>location_href</title> 5 <script src="/resources/testharness.js"></script> 6 <script src="/resources/testharnessreport.js"></script> 7 </head> 8 <body> 9 <div id="log"></div> 10 <script> 11 test(function () { 12 var href = location.href; 13 14 assert_equals(href, document.URL, "href"); 15 16 }, "location href"); 17 </script> 18 </body> 19 </html>