2011-03-15 06:14:57 +03:00
|
|
|
<body>
|
|
|
|
<head>
|
|
|
|
<title>NPAPI Seekable NPStream Test</title>
|
|
|
|
<script type="text/javascript"
|
|
|
|
src="/tests/SimpleTest/SimpleTest.js"></script>
|
2015-11-17 01:54:12 +03:00
|
|
|
<script type="text/javascript" src="plugin-utils.js"></script>
|
2011-03-15 06:14:57 +03:00
|
|
|
<link rel="stylesheet" type="text/css"
|
|
|
|
href="/tests/SimpleTest/test.css" />
|
2012-03-20 21:18:08 +04:00
|
|
|
<script>
|
2013-02-27 22:37:19 +04:00
|
|
|
SimpleTest.expectAssertions(0, 1);
|
2013-02-26 06:39:21 +04:00
|
|
|
|
2011-03-16 08:52:23 +03:00
|
|
|
SimpleTest.waitForExplicitFinish();
|
2013-09-04 18:05:40 +04:00
|
|
|
setTestPluginEnabledState(SpecialPowers.Ci.nsIPluginTag.STATE_ENABLED);
|
2011-03-16 08:52:23 +03:00
|
|
|
|
|
|
|
function frameLoaded() {
|
|
|
|
var testframe = document.getElementById('testframe');
|
|
|
|
var content = testframe.contentDocument.body.innerHTML;
|
|
|
|
if (!content.length)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ok(true, "We didn't crash");
|
|
|
|
SimpleTest.finish();
|
|
|
|
}
|
|
|
|
</script>
|
2011-03-15 06:14:57 +03:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p id="display"></p>
|
|
|
|
|
|
|
|
<iframe id="testframe" name="testframe" onload="frameLoaded()"></iframe>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
- Tests a seekable stream. Calls NPN_RequestRead with the specified
|
|
|
|
- range, and verifies that an NPP_Write call is made with the correct
|
|
|
|
- parameters, including the buffer data for the byte range. Once all
|
|
|
|
- calls to NPP_Write have finished, the plugin calls NPN_DestroyStream
|
|
|
|
- and then displays the entire stream's content in a browser frame via
|
|
|
|
- NPN_GetURL.
|
|
|
|
-->
|
|
|
|
<embed src="neverending.sjs" streammode="seek" closestream
|
|
|
|
frame="testframe" streamchunksize="1024" range="100,100"
|
|
|
|
id="embedtest" style="width: 400px; height: 100px;"
|
|
|
|
type="application/x-test"></embed>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|