Sign in
webkit
/
WebKit
/
ca9ea9c661b22e01937c876740e608cae2e1c754
/
.
/
LayoutTests
/
fast
/
forms
/
range
/
range-change-min-max.html
blob: 00ae7c04731de1d5b8e9a1d920cb19c70d391034 [
file
] [
log
] [
blame
]
<!DOCTYPE html>
<html>
<body>
<input
type
=
"range"
id
=
"test"
value
=
"100"
min
=
"0"
max
=
"200"
>
<script>
var
test
=
document
.
getElementById
(
"test"
);
test
.
offsetWidth
;
// Force layout.
test
.
min
=
80
;
test
.
max
=
140
;
</script>
</body>
</html>