Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / resources / text-selection-rect-in-overflow-frame.html
blobe14a95d5130ebadd8ea96c686eab23965e777e9f
1 <div id="t" style="height: 100px; overflow: hidden;">
2 <br><br><br><br>
3 Should have blue, not gray, highlight<br>
4 <br><br><br><br>
5 </div>
6 <script>
7 var t = document.getElementById("t");
8 getSelection().setBaseAndExtent(t, 5, t, 6);
9 t.scrollTop = 100;
10 </script>