diff options
Diffstat (limited to 'layout/reftests/css-placeholder/css-restrictions.html')
-rw-r--r-- | layout/reftests/css-placeholder/css-restrictions.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/layout/reftests/css-placeholder/css-restrictions.html b/layout/reftests/css-placeholder/css-restrictions.html new file mode 100644 index 000000000..746ed2ee9 --- /dev/null +++ b/layout/reftests/css-placeholder/css-restrictions.html @@ -0,0 +1,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> |