layout/reftests/bugs/380842-1.html

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     1 <!DOCTYPE html>
     2 <html>
     3 <head>
     4   <style>
     5     .test:before { content: "Before"; display: block }
     6     .test:after { content: "After"; display: block }
     7   </style>
     8 </head>
     9 <body>
    10 <table>
    11   <caption class="test">
    12     Caption
    13   </caption>
    14 <tr>
    15   <td class="test">
    16     Text
    17   </td>
    18 </tr>
    19 </table>
    20 <div>
    21   Before inline-block
    22   <div style="display: inline-block" class="test"> Text </div>
    23   After inline-block
    24 </div>
    25 <div>
    26   Before span
    27   <span class="test"> Text </span>
    28   After span
    29 </div>
    30 <div class="test"> Text </div>
    31 </body>
    32 </html>

mercurial