layout/reftests/css-invalid/input/style.css

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     1 /* Override default style */
     2 input {
     3   -moz-appearance: none;
     4   background: none;
     5 }
     6 input:invalid {
     7   box-shadow: none;
     8 }
    10 input.notinvalid {
    11   box-shadow: 0 0 1.5px 1px green;
    12 }
    13 input.notinvalid:invalid {
    14   box-shadow: 0 0 1.5px 1px red;
    15 }
    17 input.invalid {
    18   box-shadow: 0 0 1.5px 1px red;
    19 }
    20 input.invalid:invalid {
    21   box-shadow: 0 0 1.5px 1px green;
    22 }
    24 input.ref {
    25   box-shadow: 0 0 1.5px 1px green;
    26 }

mercurial