summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/scroll_selection_into_view_window.html
blob: cbb474a3b6cdcd2b0ce82fa29ec821a3a4028925 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for scrolling selection into view</title>
</head>
<body onload="opener.doTest();">

<div id="c1" style="overflow-y:scroll; width:200px; height:200px; position:absolute; top:200px; left:0;">
  <div style="height:400px;"></div>
  <div><span id="target1"
        style="display:inline-block; vertical-align:top; height:20px;"></span>
  </div>
  <div style="height:400px;"></div>
</div>
<div id="c2" style="overflow:hidden; width:200px; height:200px; position:absolute; top:200px; left:200px;">
  <div style="height:400px;"></div>
  <div><span id="target2"
        style="display:inline-block; vertical-align:top; height:20px;"></span>
  </div>
  <div style="height:400px;"></div>
</div>
<div id="c3" style="overflow-y:scroll; width:200px; height:200px; position:absolute; top:200px; left:400px;">
  <div style="height:400px;"></div>
  <div><span id="target3"
        style="display:inline-block; vertical-align:top; height:300px;"></span>
  </div>
  <div style="height:400px;"></div>
</div>
<div id="c4" style="overflow-y:scroll; width:200px; height:200px; position:absolute; top:200px; left:600px;">
  <iframe id="target4" style="border:none; width:100%; height:1100px; display:block;"
          src="scroll_selection_into_view_window_frame.html"></iframe>
</div>
<div id="c5" style="overflow-y:scroll; width:200px; height:200px; position:absolute; top:400px; left:0;">
  <div style="transform:translateY(400px); transform:translateY(400px)">
    <span id="target5" style="display:inline-block; vertical-align:top; height:20px;"></span>
  </div>
  <div style="height:800px;"></div>
</div>
<div id="c6" style="overflow-y:scroll; width:200px; height:200px; position:absolute; top:400px; left:200px;">
  <div style="height:200px"></div>
  <div style="height:100px; transform:scale(2); transform:scale(2)">
    <span id="target6" style="display:inline-block; vertical-align:top; height:20px;"></span>
  </div>
  <div style="height:800px;"></div>
</div>
<div id="c7" style="overflow-y:scroll; width:200px; height:200px; position:absolute; top:400px; left:400px;">
  <div style="overflow:auto; height:200px; transform:translateY(400px); transform:translateY(400px)">
    <div style="height:200px;"></div>
    <div>
      <span id="target7" style="display:inline-block; vertical-align:top; height:20px;"></span>
    </div>
    <div style="height:800px;"></div>
  </div>
  <div style="height:800px;"></div>
</div>

</body>

</html>