repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use standard ICE in Chromoting.
[chromium-blink-merge.git]
/
android_webview
/
test
/
data
/
xhr_access.html
blob
18ee9230ad80562b6cc0867264f36a57fc470255
1
<html>
2
<head>
3
<script>
4
var
xhr
=
new
XMLHttpRequest
();
5
xhr
.
open
(
"GET"
,
"hello_world.html"
,
false
);
6
try
{
7
xhr
.
send
();
8
document
.
write
(
xhr
.
responseText
);
9
}
catch
(
e
) {
10
document
.
title
=
"Exception"
;
11
}
12
</script>
13
</head>
14
<body>
15
</body>
16
</html>