summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/input/number/pseudo-classes.html
blob: 71555581bc49edc612c8086e949923dbcdd6f69b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE HTML>
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
  <meta charset="utf-8">
  <title>Test pseudo-classes on number controls</title>
  <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1250315">
  <link rel="help" href="https://drafts.csswg.org/selectors-4/#rw-pseudos">
  <link rel="match" href="about:blank">
  <style type="text/css">
body,html { color:black; background:white; font-size:16px; padding:0; margin:0; }

#t1:read-only { display:none; }
#t1:read-write { display:block; }

#t2:read-write { display:none; }
#t2:read-only { display:block; }

#t3:disabled { display:none; }
#t3:enabled { display:block; }

#t4:enabled { display:none; }
#t4:disabled { display:block; }

  </style>
</head>
<body>

<input id=t1 type=number readonly>
<input id=t2 type=number>
<input id=t3 type=number disabled>
<input id=t4 type=number>

</body>
</html>