Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | <!DOCTYPE HTML> |
michael@0 | 2 | <html> |
michael@0 | 3 | <!-- |
michael@0 | 4 | https://bugzilla.mozilla.org/show_bug.cgi?id=739040 |
michael@0 | 5 | --> |
michael@0 | 6 | <head> |
michael@0 | 7 | <title>Test that we only sniff 512 bytes</title> |
michael@0 | 8 | <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 9 | <link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"/> |
michael@0 | 10 | </head> |
michael@0 | 11 | <body> |
michael@0 | 12 | <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=739040">Mozilla Bug 739040</a> |
michael@0 | 13 | <p id="display"> |
michael@0 | 14 | <iframe id="validTestFrame" src="http://mochi.test:8888/tests/browser/components/feeds/test/valid-feed.xml"></iframe> |
michael@0 | 15 | <iframe id="unsniffableTestFrame" src="http://mochi.test:8888/tests/browser/components/feeds/test/valid-unsniffable-feed.xml"></iframe> |
michael@0 | 16 | </p> |
michael@0 | 17 | <div id="content" style="display: none"> |
michael@0 | 18 | |
michael@0 | 19 | </div> |
michael@0 | 20 | <pre id="test"> |
michael@0 | 21 | <script class="testbody" type="text/javascript"> |
michael@0 | 22 | |
michael@0 | 23 | /** Test for Bug 739040 **/ |
michael@0 | 24 | SimpleTest.waitForExplicitFinish(); |
michael@0 | 25 | |
michael@0 | 26 | addLoadEvent(function() { |
michael@0 | 27 | is($("validTestFrame").contentDocument.documentElement.id, "feedHandler", |
michael@0 | 28 | "valid feed should be sniffed"); |
michael@0 | 29 | isnot($("unsniffableTestFrame").contentDocument.documentElement.id, "feedHandler", |
michael@0 | 30 | "unsniffable feed should not be sniffed"); |
michael@0 | 31 | }); |
michael@0 | 32 | addLoadEvent(SimpleTest.finish); |
michael@0 | 33 | |
michael@0 | 34 | </script> |
michael@0 | 35 | </pre> |
michael@0 | 36 | </body> |
michael@0 | 37 | </html> |