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
Do not announce robot account token before account ID is available
[chromium-blink-merge.git]
/
chrome
/
test
/
data
/
prerender
/
simple_prefetch.html
blob
0484c271d0728801d1afb799d81ed0c2941dff57
1
<html>
2
<head>
3
<title>
Simple Prefetch Page
</title>
4
<script>
5
function
linkOnload
() {
6
document
.
title
=
'link onload'
;
7
}
8
9
function
linkOnerror
() {
10
document
.
title
=
'link onerror'
;
11
}
12
</script>
13
<link
rel
=
"prefetch"
14
href
=
"prefetch_target.lnk"
15
onload
=
"linkOnload()"
16
onerror
=
"linkOnerror()"
/>
17
</head>
18
<body>
19
</body>
20
</html>