layout/reftests/table-bordercollapse/bc_dyn_row3.html

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

michael@0 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
michael@0 2 <head><title>CSS 2.1 Test Suite: border collapse dynamic change to row border style</title>
michael@0 3 <link rel="author" title="Bernd Mielke" href="mailto:bmlk@gmx.de" />
michael@0 4 <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#collapsing-borders" />
michael@0 5 <meta name="flags" content="dom" />
michael@0 6 <script>
michael@0 7 function doTest(){
michael@0 8 var t1 =document.getElementById('target');
michael@0 9 t1.style.borderStyle="solid";
michael@0 10 }
michael@0 11 </script>
michael@0 12 <style>
michael@0 13 td { border: 10px green outset;}
michael@0 14 table {margin: 30px}
michael@0 15 </style>
michael@0 16 </head>
michael@0 17 <body onload="doTest()";>
michael@0 18 <table style="border-collapse:collapse">
michael@0 19 <tr><td>c11</td><td>c12</td><td>c13</td></tr>
michael@0 20 <tr id="target" style="border:outset green 10px"><td>c21</td><td>c22</td><td>c23</td></tr>
michael@0 21 <tr><td>c31</td><td>c32</td><td>c33</td></tr>
michael@0 22 </table>
michael@0 23

mercurial