https://github.com/mozilla/gecko-dev
Raw File
Tip revision: ef747cb9bb50f16402eb5d3ab4ec0fd980cf8834 authored by Ryan VanderMeulen on 09 June 2014, 18:59:33 UTC
Bug 947531 - Skip the satchel browser-chrome test too. a=test-only
Tip revision: ef747cb
bc_dyn_rg2.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<head><title>CSS 2.1 Test Suite: border collapse dynamic change to rowgroup border width</title>
    <link rel="author" title="Bernd Mielke" href="mailto:bmlk@gmx.de" />
    <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#collapsing-borders" />
    <meta name="flags" content="dom" />
<script>
function doTest(){
 var t1 =document.getElementById('target');
 t1.style.borderWidth="20px";
}
</script>
<style>
td { border: 10px green solid;}
table {margin: 30px}
</style>
</head>
<body onload="doTest()";>
<table style="border-collapse:collapse">
<tbody></tbody><tr><td>c11</td><td>c12</td><td>c13</td></tr></tbody>
 <tbody id="target" style="border:solid green 11px">
 <tr><td>c21</td><td>c22</td><td>c23</td></tr>
 </tbody>
 <tbody>
 <tr><td>c31</td><td>c32</td><td>c33</td></tr>
 </tbody>
</table>

back to top