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 | <!DOCTYPE HTML> |
michael@0 | 2 | <html> |
michael@0 | 3 | <head> |
michael@0 | 4 | <title>Test for nsIDOMWindowUtils.getTranslationNodes</title> |
michael@0 | 5 | <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 6 | <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> |
michael@0 | 7 | </head> |
michael@0 | 8 | <body onload="runTest()"> |
michael@0 | 9 | <script type="application/javascript"> |
michael@0 | 10 | var utils = SpecialPowers.wrap(window). |
michael@0 | 11 | QueryInterface(SpecialPowers.Ci.nsIInterfaceRequestor). |
michael@0 | 12 | getInterface(SpecialPowers.Ci.nsIDOMWindowUtils); |
michael@0 | 13 | |
michael@0 | 14 | function runTest() { |
michael@0 | 15 | isnot(utils, null, "nsIDOMWindowUtils"); |
michael@0 | 16 | |
michael@0 | 17 | for (var i = 0; i < 16000; i++) { |
michael@0 | 18 | var text = document.createTextNode("a"); |
michael@0 | 19 | var node = document.createElement("b"); |
michael@0 | 20 | node.appendChild(text); |
michael@0 | 21 | document.body.appendChild(node); |
michael@0 | 22 | } |
michael@0 | 23 | |
michael@0 | 24 | var translationRoots = utils.getTranslationNodes(document.body); |
michael@0 | 25 | is (translationRoots.length, 15000, "Translation nodes were limited to 15000 nodes."); |
michael@0 | 26 | |
michael@0 | 27 | SimpleTest.finish(); |
michael@0 | 28 | } |
michael@0 | 29 | |
michael@0 | 30 | SimpleTest.waitForExplicitFinish(); |
michael@0 | 31 | </script> |
michael@0 | 32 | </body> |
michael@0 | 33 | </html> |