mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
ce3dce7493
--HG-- rename : browser/devtools/netmonitor/test/browser_net_cyrillic.js => browser/devtools/netmonitor/test/browser_net_cyrillic-01.js
35 lines
729 B
HTML
35 lines
729 B
HTML
<!doctype html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>Network Monitor test page</title>
|
|
</head>
|
|
|
|
<body>
|
|
<p>Cyrillic type test</p>
|
|
<p>Братан, ты вообще качаешься?</p>
|
|
|
|
<script type="text/javascript">
|
|
function get(aAddress, aCallback) {
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.open("GET", aAddress, true);
|
|
|
|
xhr.onreadystatechange = function() {
|
|
if (this.readyState == this.DONE) {
|
|
aCallback();
|
|
}
|
|
};
|
|
xhr.send(null);
|
|
}
|
|
|
|
function performRequests() {
|
|
get("sjs_content-type-test-server.sjs?fmt=txt", function() {
|
|
// Done.
|
|
});
|
|
}
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|