(t, parent, prefix)
| 3 | setup({ explicit_done: true }); |
| 4 | |
| 5 | function checkSubtreeExpectedValues(t, parent, prefix) |
| 6 | { |
| 7 | var checkedLayout = checkExpectedValues(t, parent, prefix); |
| 8 | Array.prototype.forEach.call(parent.childNodes, function(node) { |
| 9 | checkedLayout |= checkSubtreeExpectedValues(t, node, prefix); |
| 10 | }); |
| 11 | return checkedLayout; |
| 12 | } |
| 13 | |
| 14 | function checkAttribute(output, node, attribute) |
| 15 | { |
no test coverage detected