summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/447749-1.html
blob: f747614f73071a0c6215b210f56c52f6c91cd583 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE HTML>
<html>
 <head>
  <title>Bug 4477749</title>
  <style type="text/css">
   div.scroller { overflow: scroll; width: 100px; }
   span { border: 1px solid blue; }
  </style>
  <script type="text/javascript">
function testit()
{
  var inner=document.getElementById("testinner").childNodes[0];
  window.getSelection().collapse(inner, 0);
  document.getElementById("testmid").scrollLeft=-1000;
  document.getElementById("testouter").style.direction="ltr";
}
  </script>
 </head>
 <body onload="testit()">
  <div id="testouter" dir="rtl">
   <div id="testmid" class="scroller"><span id="testinner">TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText</span></div>
  </div>
 </body>
</html>