dom/plugins/test/mochitest/test_fullpage.html

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

michael@0 1 <head>
michael@0 2 <title>Full-page seekable stream</title>
michael@0 3
michael@0 4 <script type="text/javascript"
michael@0 5 src="/tests/SimpleTest/SimpleTest.js"></script>
michael@0 6 <script type="application/javascript" src="utils.js"></script>
michael@0 7 <link rel="stylesheet" type="text/css"
michael@0 8 href="/tests/SimpleTest/test.css">
michael@0 9
michael@0 10 <body>
michael@0 11 <p id="display"></p>
michael@0 12
michael@0 13 <script type="application/javascript">
michael@0 14 SimpleTest.waitForExplicitFinish();
michael@0 15 setTestPluginEnabledState(SpecialPowers.Ci.nsIPluginTag.STATE_ENABLED);
michael@0 16
michael@0 17 function frameLoaded() {
michael@0 18 var testframe = document.getElementById('testframe');
michael@0 19 var content = testframe.contentDocument.body.innerHTML;
michael@0 20 if (!content.length)
michael@0 21 return;
michael@0 22
michael@0 23 var req = new XMLHttpRequest();
michael@0 24 req.open('GET', 'loremipsum.xtest', false);
michael@0 25 req.overrideMimeType('text/plain; charset=x-user-defined');
michael@0 26 req.send(null);
michael@0 27 is(req.status, 200, "bad XMLHttpRequest");
michael@0 28 is(content, req.responseText.replace(/\r\n/g, "\n"),
michael@0 29 "content doesn't match");
michael@0 30 SimpleTest.finish();
michael@0 31 }
michael@0 32 </script>
michael@0 33
michael@0 34 <iframe src="loremipsum.xtest" streamtype="seek"></iframe>
michael@0 35 <iframe id="testframe" name="testframe" onload="frameLoaded()"></iframe>

mercurial