diff options
Diffstat (limited to 'layout/reftests/forms/input/file/style.html')
-rw-r--r-- | layout/reftests/forms/input/file/style.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/layout/reftests/forms/input/file/style.html b/layout/reftests/forms/input/file/style.html new file mode 100644 index 0000000000..76fa4d971d --- /dev/null +++ b/layout/reftests/forms/input/file/style.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html> + <style> + input { + background-color: blue; + border: 1px red solid; + width: 400px; + color: white; + padding: 2px; + margin: 5px; + } + </style> + <body> + <input type='file'> + </body> +</html> |