Bug 1918529 - fix some subpixel misalignment issues with gfx.webrender.svg-filter...
[gecko.git] / layout / reftests / css-placeholder / css-restrictions.html
blob96bfac995232f6a33121e19df32ba233fed73768
1 <!DOCTYPE html>
2 <html>
3 <style>
4 :is(input, textarea)::placeholder {
5 visibility: hidden;
6 padding: 20px;
7 float: right;
8 overflow: visible;
11 * This list could be endless given that all non-whitelisted properties
12 * are restricted.
15 </style>
16 <body>
17 <input placeholder='foo'>
18 <textarea placeholder='foo'></textarea>
19 <!-- for overflow and white-space -->
20 <input placeholder='this is a quitelongetextforasmallelement'>
21 <textarea placeholder='this is a quitelongetextforasmallelement'></textarea>
22 </body>
23 </html>