summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-placeholder/css-restrictions.html
blob: 746ed2ee974a6697438ee8cf9e770a8f219b0a79 (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
<!DOCTYPE html>
<html>
  <style>
    :-moz-any(input, textarea)::placeholder {
      visibility: hidden;
      padding: 20px;
      float: right;
      overflow: visible;
      white-space: pre;

      /*
       * This list could be endless given that all non-whitelisted properties
       * are restricted.
       */
    }
  </style>
  <body>
    <input placeholder='foo'>
    <textarea placeholder='foo'></textarea>
    <!-- for overflow and white-space -->
    <input placeholder='this is a quitelongetextforasmallelement'>
    <textarea placeholder='this is a quitelongetextforasmallelement'></textarea>
  </body>
</html>