summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/582476-1-ref.svg
blob: 96b6e19027fe49f23ee1f9e5dc9d50dc3b31c916 (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
<svg xmlns="http://www.w3.org/2000/svg">
  <script>
    iframeLoadedFirst = false;
    parentLoadedFirst = false;

    function iframeLoad() {
      if (parentLoadedFirst) {
        setup();
      } else {
        iframeLoadedFirst = true;
      }
    }

    window.onload = function() {
      if (iframeLoadedFirst) {
        setup();
      } else {
        parentLoadedFirst = true;
      }
    }

    function setup() {
      var scrollTarget = document.getElementById("ifrm").contentWindow;
      scrollTarget.scrollTo(0,100000);
    }
  </script>
  <foreignObject height="100%" width="100%">
    <iframe id="ifrm" onload="iframeLoad();" width="100%" height="100%" xmlns="http://www.w3.org/1999/xhtml" src="582476-1-ref-helper.html"/>
  </foreignObject>
</svg>