gecko-dev/dom/plugins/test/mochitest/test_pluginstream_src_referer.html
Brian Grinstead c4fa4cfc0c Bug 1544322 - Part 4 - Remove the [type] attribute for multiline <script> tags loading files in /tests/SimpleTest/ r=bzbarsky
This is an autogenerated commit to handle scripts loading mochitest harness files, in
the case where the script src is on the line below the script tag.

This was generated with https://bug1544322.bmoattachments.org/attachment.cgi?id=9058170
using the `--part 4` argument.

Differential Revision: https://phabricator.services.mozilla.com/D27459

--HG--
extra : moz-landing-system : lando
2019-04-16 04:01:46 +00:00

33 lines
1.2 KiB
HTML

<head>
<title>Do plugin stream src requests send the Referer header correctly?</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="text/javascript" src="plugin-utils.js"></script>
<link rel="stylesheet" type="text/css"
href="/tests/SimpleTest/test.css" />
<body>
<p id="display"></p>
<script class="testbody" type="application/javascript">
SimpleTest.waitForExplicitFinish();
setTestPluginEnabledState(SpecialPowers.Ci.nsIPluginTag.STATE_ENABLED);
function frameLoaded() {
var testframe = document.getElementById("pluginframe");
// We have to use SpecialPowers because nptest.cpp prepends
// data: whichs makes the frame cross origin with the including page.
var wrappedDoc = SpecialPowers.wrap(testframe).contentDocument;
var content = wrappedDoc.body.innerHTML;
if (!content.length)
return;
is(content, "Referer found: " + window.location);
SimpleTest.finish();
}
</script>
<iframe name="pluginframe" id="pluginframe" onload="frameLoaded()"></iframe>
<embed id="plugin" type="application/x-test" src="plugin-stream-referer.sjs" width="200" height="200" frame="pluginframe"></embed>