blob: 0e9e50a344b86a93ed2cde2e8ef96f5361fe966f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<html>
<!--
Make sure prerendered page load NaCl plugins when it's enabled.
-->
<head>
<title>Prerender NaCl Enabled</title>
</head>
<body>
<script>
var readyToSendResult = false;
var pluginLoadStarted = false;
/**
* Sends true if |readyToSendResult| and |pluginLoadStarted| are both true.
* Otherwise, does nothing.
*/
function sendResult() {
if (!readyToSendResult || !pluginLoadStarted)
return;
window.domAutomationController.send(true);
readyToSendResult = false;
}
function eventListener(event) {
var targetElement = event.target;
if (event.target.id != 'naclPlugin')
return;
pluginLoadStarted = true;
sendResult();
}
document.body.addEventListener('loadstart', eventListener, true);
function DidPrerenderPass() {
return !pluginLoadStarted;
}
function DidDisplayPass() {
return true;
}
/**
* It's possible for DidDisplayPass to be called before the loadstart event
* happens, since the loadstart event is posted asynchronously when a plugin
* loads. As a result, we need to wait until we've seen both the loadstart
* event and been called from the browser process before we can safely send
* the real result.
*/
function DidDisplayReallyPass() {
readyToSendResult = true;
sendResult();
}
</script>
<embed id="naclPlugin" type="application/x-nacl" src="dummy.nmf"></embed>
</body>
</html>
|