summaryrefslogtreecommitdiffstats
path: root/layout/reftests/scrolling/deferred-anchor.xhtml
blob: 1cb3f54091bcf81c83258e74e7e99648bc0898ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" style="height: 100%; overflow: hidden;">
<head>
<script>
var xhr = new XMLHttpRequest();
xhr.onprogress = function() {
};
xhr.onload = function() {
  document.documentElement.innerHTML = this.responseXML.documentElement.innerHTML;
};
xhr.open("get", "deferred-anchor-ref.xhtml");
xhr.send();
</script>
</head>
</html>