mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
375 B
HTML
17 lines
375 B
HTML
|
<?xml version="1.0"?>
|
||
|
<!DOCTYPE html>
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<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>
|