7 document
.getElementById('log').appendChild(document
.createTextNode(msg
+ '\n'));
11 if (window
.testRunner
)
12 testRunner
.dumpAsText();
14 var input
= document
.getElementsByTagName('input')[0]
16 if (!wasLog
&& input
.value
=== "100")
21 <body onload=
"test()">
23 This page tests that setting the value of an
<tt><input type=range
></tt>
24 element to an out-of-range value does not fire the
<tt>oninput
</tt> event.
26 <input type=range
oninput=
"log('FAIL')" min=
0 max=
100 value=
50>