OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script> | 3 <script> |
4 function log(msg) | 4 function log(msg) |
5 { | 5 { |
6 document.getElementById('console').appendChild(document.createTextNod
e(msg + '\n')); | 6 document.getElementById('console').appendChild(document.createTextNod
e(msg + '\n')); |
7 } | 7 } |
8 | 8 |
9 function test() | 9 function test() |
10 { | 10 { |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 | 50 |
51 <div id="scrollableDiv" style="height: 100px; overflow-x: auto; overflow-y: a
uto; width: 100px"> | 51 <div id="scrollableDiv" style="height: 100px; overflow-x: auto; overflow-y: a
uto; width: 100px"> |
52 <div style=" height: 1000px; width: 1000px"> | 52 <div style=" height: 1000px; width: 1000px"> |
53 <iframe id="NoScrolliFrame" src="resources/big-page-with-overflow-hid
den.html" style="height: 1000px; width: 1000px"></iframe> | 53 <iframe id="NoScrolliFrame" src="resources/big-page-with-overflow-hid
den.html" style="height: 1000px; width: 1000px"></iframe> |
54 </div> | 54 </div> |
55 </div> | 55 </div> |
56 | 56 |
57 <div id="console"> | 57 <div id="console"> |
58 rdar://problem/6166435 Inspector doesn't auto scroll when selecting text
(20451) <br> | 58 rdar://problem/6166435 Inspector doesn't auto scroll when selecting text
(20451) <br> |
59 To do the test manually you have to try triggering the autoscroll by star
ting the dragging from within the blue iframe. If the autoscroll occurs the text
has passed, if the autoscroll isn't working, the test has failed<br> | 59 To do the test manually you have to try triggering the autoscroll by star
ting the dragging from within the blue iframe. If the autoscroll occurs the text
has passed, if the autoscroll isn't working, the test has failed<br> |
60 nb: Knowing that the iframe document has a overflow: hidden on his body b
ut the whole iframe is embedded in scrollable div, the scrollable div have to be
able to trigger the autoscroll<br> | 60 nb: Knowing that the iframe document has an overflow: hidden on its body
but the whole iframe is embedded in a scrollable div, the scrollable div has to
be able to trigger the autoscroll<br> |
61 Though you should be able to write some long text in the input and to tri
gger the autoscroll within the input.<br> | 61 Though you should be able to write some long text in the input and to tri
gger the autoscroll within the input.<br> |
62 </div> | 62 </div> |
63 | 63 |
64 </body> | 64 </body> |
65 </html> | 65 </html> |
66 | 66 |
OLD | NEW |