Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | <html> |
michael@0 | 2 | <head> |
michael@0 | 3 | <title>colgroup pseudos</title> |
michael@0 | 4 | <style> |
michael@0 | 5 | div.table {background-color:red; color:yellow; display:table} |
michael@0 | 6 | div.col {background-color:green; width:400px; display:table-column} |
michael@0 | 7 | |
michael@0 | 8 | </style> |
michael@0 | 9 | </head> |
michael@0 | 10 | <body> |
michael@0 | 11 | <div class="table"> |
michael@0 | 12 | <div class="col" ></div> anonymous content |
michael@0 | 13 | </div> |
michael@0 | 14 | <div class="table"> |
michael@0 | 15 | <div class="col" ></div> <div style="display:table-cell">anonymous cell</div> |
michael@0 | 16 | </div> |
michael@0 | 17 | <div class="table"> |
michael@0 | 18 | <div class="col" ></div> <div style="display:table-row">anonymous row</div> |
michael@0 | 19 | </div> |
michael@0 | 20 | <div class="table"> |
michael@0 | 21 | <div class="col" ></div> <div style="display:table-row-group">anonymous rowgroup</div> |
michael@0 | 22 | </div> |
michael@0 | 23 | <div class="table"> |
michael@0 | 24 | <div class="col" ></div> <div style="display:table">anonymous table</div> |
michael@0 | 25 | </div> |
michael@0 | 26 | <div class="table"> |
michael@0 | 27 | <div class="col" ></div> <div style="display:table-caption">anonymous caption</div> |
michael@0 | 28 | </div> |
michael@0 | 29 | |
michael@0 | 30 | </body> |
michael@0 | 31 | </html> |