mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-22 11:33:03 +00:00
17 lines
415 B
HTML
17 lines
415 B
HTML
<?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>
|