Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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> |