OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <script src="../../../resources/testharness.js"></script> | |
3 <script src="../../../resources/testharnessreport.js"></script> | |
4 <script src="../script-tests/childnode-after.js"></script> | |
philipj_slow
2015/04/29 13:16:57
This pattern is a bit atypical for testharness.js
Paritosh Kumar
2015/06/08 12:21:24
Done. Thanks.
| |
5 <script> | |
6 var node, parentNode; | |
7 setup(function() { | |
8 node = document.createComment("node"); | |
philipj_slow
2015/04/29 13:16:57
Indentation should be 2 or 4 spaces. (I tend to us
Paritosh Kumar
2015/06/08 12:21:24
Done.
| |
9 parentNode = document.createElement("div"); | |
10 }); | |
11 testAfter(node, parentNode, "comment"); | |
12 </script> | |
13 </html> | |
OLD | NEW |