summaryrefslogtreecommitdiffstats
path: root/layout/xul/reftest/scrollbar-marks-overlay.html
blob: 823fd6fd52259e3af73dd23dd2b28924b66c157e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<script>
  function doTest() {
    frames[0].setScrollMarks([30, 70, 110]);
    frames[1].setScrollMarks([45, 165], true);
    document.documentElement.removeAttribute("class");
  }
</script>
</head>
<body onload="doTest()">
<div style='border: 1px solid red; position: absolute; width: 300px; padding: 0;'>
  <iframe style='position: relative; border: none; height: 200px; vertical-align: middle;' src='data:text/html,<p style="height: 400px;"></p>'></iframe>
  <iframe style='position: relative; border: none; height: 200px; vertical-align: middle;' src='data:text/html,<p style="height: 100%; width: 600px;"></p>'></iframe>
</div>
</body>
</html>