gecko/browser/devtools/netmonitor/test/html_cyrillic-test-page.html
Victor Porof ce3dce7493 Bug 866623 - Firefox spoils cyrillic text in the Network Monitor response tab - fix convertToUnicode misbehaving when a request has no attached contentCharset, r=rcampbell
--HG--
rename : browser/devtools/netmonitor/test/browser_net_cyrillic.js => browser/devtools/netmonitor/test/browser_net_cyrillic-01.js
2013-05-24 20:10:07 +03:00

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>