<!DOCTYPE html> | |
<html> | |
<head> | |
<style type="text/css"> | |
table { | |
border-collapse: collapse; | |
} | |
td.cause { | |
padding: 2px; | |
border-right:2px dotted green; | |
} | |
td.effect { | |
border: 2px dotted green; | |
} | |
</style></head> | |
<body> | |
<script> | |
if(window.testRunner) | |
testRunner.dumpAsText(true); | |
</script> | |
<table> | |
<tr><td class="cause">Item Description</td></tr> | |
<tr><td class="effect">Art</td></tr> | |
</tbody> | |
</table> | |
</body> | |
</html> | |