tenfourfox/layout/reftests/bugs/377603-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

28 lines
560 B
HTML

<!DOCTYPE html>
<html>
<head>
<head>
<style>
table table
{ border-collapse: collapse; border-style: solid; border-width: 10px }
</style>
</head>
</head>
<body>
<table><tr>
<td style="border: 0px solid green; color: red">
<table style="border-color: inherit">
<tr><td></td></tr>
</table>
<table id="test">
<tr><td></td></tr>
</table>
<script>
document.body.offsetWidth;
document.getElementById("test").style.borderColor = "inherit";
</script>
</td>
</tr></table>
</body>
</html>