OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <title>HTMLAnchorElement stringifier</title> |
| 3 <link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com"> |
| 4 <link rel="help" href="https://heycam.github.io/webidl/#es-stringifier"> |
| 5 <script src=../../../../../../resources/testharness.js></script> |
| 6 <script src=../../../../../../resources/testharnessreport.js></script> |
| 7 <script src=/common/stringifiers.js></script> |
| 8 <div id=log></div> |
| 9 <script> |
| 10 test(function() { |
| 11 test_stringifier_attribute(document.createElement("a"), "href", false); |
| 12 var a = document.createElement("a"); |
| 13 a.setAttribute("href", "foo"); |
| 14 test_stringifier_attribute(a, "href", false); |
| 15 }); |
| 16 </script> |
OLD | NEW |