diff options
Diffstat (limited to 'layout/reftests/css-scrollbars/scrollbar-thin-overflow-change-ref.html')
-rw-r--r-- | layout/reftests/css-scrollbars/scrollbar-thin-overflow-change-ref.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/layout/reftests/css-scrollbars/scrollbar-thin-overflow-change-ref.html b/layout/reftests/css-scrollbars/scrollbar-thin-overflow-change-ref.html new file mode 100644 index 0000000000..592690f7ca --- /dev/null +++ b/layout/reftests/css-scrollbars/scrollbar-thin-overflow-change-ref.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<style> +#outer { + scrollbar-width: thin; + overflow: auto; + border: 5px solid black; + background: black; + width: 200px; + height: 200px; +} +#inner { + height: 300px; +} +</style> +<div id="outer"> + <div id="inner"></div> +</div> |