Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <title> Test href value of anchor element in template.</title> | |
| 3 <script src="../../../resources/testharness.js"></script> | |
| 4 <script src="../../../resources/testharnessreport.js"></script> | |
| 5 <template> | |
| 6 <a href="SUCCESS"></a> | |
| 7 </template> | |
| 8 <script> | |
| 9 test(function() { | |
| 10 var a = document.querySelector('template').content.querySelector('a'); | |
|
foolip
2017/04/25 09:23:44
Can you put this test in LayoutTests/external/wpt/
| |
| 11 assert_not_equals(a.href, ""); | |
| 12 assert_equals(a.getAttribute('href'), "SUCCESS"); | |
| 13 }); | |
| 14 </script> | |
| OLD | NEW |