1 Test the value of scrollWidth on blocks with visible overflow. These results match IE8.
5 margin-left: 9px; -> scrollWidth: 84
6 margin-right: 9px; -> scrollWidth: 75
7 margin-left: -27px; -> scrollWidth: 50
8 position: relative; -> scrollWidth: 75
9 position: relative; left: 9px; -> scrollWidth: 84
10 position: relative; left: -9px; -> scrollWidth: 66
11 position: relative; left: -27px; -> scrollWidth: 50
12 position: absolute; -> scrollWidth: 50
16 margin-left: 9px; -> scrollWidth: 75
17 margin-right: 9px; -> scrollWidth: 84
18 margin-left: -27px; -> scrollWidth: 75
19 position: relative; -> scrollWidth: 75
20 position: relative; left: 9px; -> scrollWidth: 66
21 position: relative; left: -9px; -> scrollWidth: 84
22 position: relative; left: -27px; -> scrollWidth: 102
23 position: absolute; -> scrollWidth: 50