layout/reftests/bugs/180085-2.html

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

     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