content/base/test/test_bug357509.html

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

michael@0 1 <html>
michael@0 2 <!--
michael@0 3 https://bugzilla.mozilla.org/show_bug.cgi?id=357509
michael@0 4 -->
michael@0 5 <head>
michael@0 6 <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
michael@0 7 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
michael@0 8 <script>
michael@0 9 function foo(elem) {
michael@0 10 rng = document.createRange();
michael@0 11 rng.setStartBefore(elem);
michael@0 12 }
michael@0 13 </script>
michael@0 14 </head>
michael@0 15 <body>
michael@0 16 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=357509">Mozilla Bug 357509</a>
michael@0 17 <div style="display: none" id="rangetest">
michael@0 18 </div>
michael@0 19 <pre id="test">
michael@0 20 <script type="text/javascript">
michael@0 21 var passed = false;
michael@0 22 try {
michael@0 23 foo(document.getElementById("rangetest"))
michael@0 24 passed = true;
michael@0 25 }
michael@0 26 catch (e) {
michael@0 27 passed = false;
michael@0 28 }
michael@0 29
michael@0 30 <!-- The ok() function tests the first arg -->
michael@0 31 ok(passed, "nsIDOMRange.setStartBefore");
michael@0 32
michael@0 33 </script>
michael@0 34 </pre>
michael@0 35 </body>
michael@0 36 </html>

mercurial