summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-placeholder/css-restrictions.html
blob: 96bfac995232f6a33121e19df32ba233fed73768 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
  <style>
    :is(input, textarea)::placeholder {
      visibility: hidden;
      padding: 20px;
      float: right;
      overflow: visible;

      /*
       * 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>