layout/reftests/bugs/180085-2.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  .none { -moz-appearance: none; }
     6  input, button { width: 1.5em; padding-top: 0; padding-bottom: 0; font-size: 12px }
     7 </style>
     8 </head>
     9 <body>
    10   <input class="none" type="button" value="M"><br>
    11   <input class="none" type="button" style="padding: 0 0.2em;" value="M"><br>
    13   <input class="none" type="button" value="Long Text"><br>
    14   <input class="none" type="button" style="padding: 0 0.2em;" value="Long Text"><br>
    16   <input type="button" value="M"><br>
    17   <input type="button" style="padding: 0 0.2em;" value="M"><br>
    19   <input type="button" value="Long Text"><br>
    20   <input type="button" style="padding: 0 0.2em;" value="Long Text"><br>
    22   <button class="none" type="button">M</button><br>
    23   <button class="none" type="button" style="padding: 0 0.2em;" >M</button><br>
    25   <button class="none" type="button">Long Text</button><br>
    26   <button class="none" type="button" style="padding: 0 0.2em;">Long Text</button><br>
    28   <button type="button">M</button><br>
    29   <button type="button" style="padding: 0 0.2em;">M</button><br>
    31   <button type="button">Long Text</button><br>
    32   <button type="button" style="padding: 0 0.2em;" >Long Text</button><br>
    33 </body>
    34 </html>

mercurial