Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | <!DOCTYPE html> |
michael@0 | 2 | <html> |
michael@0 | 3 | <head> |
michael@0 | 4 | <style> |
michael@0 | 5 | .test:before { content: "Before"; display: block } |
michael@0 | 6 | .test:after { content: "After"; display: block } |
michael@0 | 7 | </style> |
michael@0 | 8 | </head> |
michael@0 | 9 | <body> |
michael@0 | 10 | <table> |
michael@0 | 11 | <caption class="test"> |
michael@0 | 12 | Caption |
michael@0 | 13 | </caption> |
michael@0 | 14 | <tr> |
michael@0 | 15 | <td class="test"> |
michael@0 | 16 | Text |
michael@0 | 17 | </td> |
michael@0 | 18 | </tr> |
michael@0 | 19 | </table> |
michael@0 | 20 | <div> |
michael@0 | 21 | Before inline-block |
michael@0 | 22 | <div style="display: inline-block" class="test"> Text </div> |
michael@0 | 23 | After inline-block |
michael@0 | 24 | </div> |
michael@0 | 25 | <div> |
michael@0 | 26 | Before span |
michael@0 | 27 | <span class="test"> Text </span> |
michael@0 | 28 | After span |
michael@0 | 29 | </div> |
michael@0 | 30 | <div class="test"> Text </div> |
michael@0 | 31 | </body> |
michael@0 | 32 | </html> |