summaryrefslogtreecommitdiffstats
path: root/layout/reftests/native-theme/scroll-thumb-minimum-size-notheme.html
blob: e31a7a3094145d768b2594c97d44c665e9a59153 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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
-->