diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/reftests/native-theme/scroll-thumb-minimum-size-notheme.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/reftests/native-theme/scroll-thumb-minimum-size-notheme.html')
-rw-r--r-- | layout/reftests/native-theme/scroll-thumb-minimum-size-notheme.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/layout/reftests/native-theme/scroll-thumb-minimum-size-notheme.html b/layout/reftests/native-theme/scroll-thumb-minimum-size-notheme.html new file mode 100644 index 000000000..e31a7a309 --- /dev/null +++ b/layout/reftests/native-theme/scroll-thumb-minimum-size-notheme.html @@ -0,0 +1,32 @@ +<!DOCTYPE html> +<meta http-equiv="msthemecompatible" content="no"> +<div style="width: 200px; height: 200px; overflow: scroll;"> + <div style="width: 3725px; height: 3725px"></div> +</div> +<!-- +The size of the inner div is computed as follow: + +Input: + outer_div_size: size of the div containing the scrollbar + button_size: size of the scrollbar arrow buttons + scrollbar_thickness: width/height of a vertical/horizontal scrollbar respectively + thumb_size: height/width of the thumb of a vertical/horizontal scrollbar respectively +Output: + inner_div_size: size of the div to be scrolled + +Formula: + slider_size = outer_div_size - 2 * button_size - scrollbar_thickness + thumb_size = slider_size * (outer_div_size / inner_div_size) + which gives: + inner_div_size = (outer_div_size - 2 * button_size - scrollbar_thickness) * (outer_div_size / thumb_size) + +Testcase constants: + outer_div_size = 200 + +On XP/Vista at 96 dpi with theme disabled: + thumb_size = 8 (minimum size) + button_size = 17 + scrollbar_thickness = 17 + + inner_div_size = (200 - 2 * 17 - 17) * (200 / 8) = 3725 +--> |