1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/scrolling/deferred-anchor.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,16 @@ 1.4 +<?xml version="1.0"?> 1.5 +<!DOCTYPE html> 1.6 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.7 +<head> 1.8 +<script> 1.9 +var xhr = new XMLHttpRequest(); 1.10 +xhr.onprogress = function() { 1.11 +}; 1.12 +xhr.onload = function() { 1.13 + document.documentElement.innerHTML = this.responseXML.documentElement.innerHTML; 1.14 +}; 1.15 +xhr.open("get", "deferred-anchor-ref.xhtml"); 1.16 +xhr.send(); 1.17 +</script> 1.18 +</head> 1.19 +</html>