Thu, 15 Jan 2015 21:03:48 +0100
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 | <!DOCTYPE HTML> |
michael@0 | 2 | <html> |
michael@0 | 3 | <!-- |
michael@0 | 4 | https://bugzilla.mozilla.org/show_bug.cgi?id=339494 |
michael@0 | 5 | --> |
michael@0 | 6 | <head> |
michael@0 | 7 | <title>Test for Bug 339494</title> |
michael@0 | 8 | <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 9 | <link rel="stylesheet" type="text/css" href="/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=339494">Mozilla Bug 339494</a> |
michael@0 | 13 | <p id="display"></p> |
michael@0 | 14 | <div id="content" style="display: none"> |
michael@0 | 15 | <div id="d"></div> |
michael@0 | 16 | <div id="s"></div> |
michael@0 | 17 | </div> |
michael@0 | 18 | <pre id="test"> |
michael@0 | 19 | <script class="testbody" type="text/javascript"> |
michael@0 | 20 | |
michael@0 | 21 | /** Test for Bug 339494 **/ |
michael@0 | 22 | |
michael@0 | 23 | var d = document.getElementById("d"); |
michael@0 | 24 | |
michael@0 | 25 | d.setAttribute("hhh", "testvalue"); |
michael@0 | 26 | |
michael@0 | 27 | document.addEventListener("DOMAttrModified", removeItAgain, false); |
michael@0 | 28 | d.removeAttribute("hhh"); |
michael@0 | 29 | document.removeEventListener("DOMAttrModified", removeItAgain, false); |
michael@0 | 30 | |
michael@0 | 31 | function removeItAgain() |
michael@0 | 32 | { |
michael@0 | 33 | ok(!d.hasAttribute("hhh"), "Value check 1", |
michael@0 | 34 | "There should be no value"); |
michael@0 | 35 | isnot(d.getAttribute("hhh"), "testvalue", "Value check 2"); |
michael@0 | 36 | document.removeEventListener("DOMAttrModified", removeItAgain, false); |
michael@0 | 37 | d.removeAttribute("hhh"); |
michael@0 | 38 | ok(true, "Reachability", "We shouldn't have crashed"); |
michael@0 | 39 | } |
michael@0 | 40 | |
michael@0 | 41 | var s = document.getElementById("s"); |
michael@0 | 42 | |
michael@0 | 43 | s.setAttribute("ggg", "testvalue"); |
michael@0 | 44 | |
michael@0 | 45 | document.addEventListener("DOMAttrModified", compareVal, false); |
michael@0 | 46 | s.setAttribute("ggg", "othervalue"); |
michael@0 | 47 | document.removeEventListener("DOMAttrModified", compareVal, false); |
michael@0 | 48 | |
michael@0 | 49 | function compareVal() |
michael@0 | 50 | { |
michael@0 | 51 | ok(s.hasAttribute("ggg"), "Value check 3", |
michael@0 | 52 | "There should be a value"); |
michael@0 | 53 | isnot(s.getAttribute("ggg"), "testvalue", "Value check 4"); |
michael@0 | 54 | is(s.getAttribute("ggg"), "othervalue", "Value check 5"); |
michael@0 | 55 | } |
michael@0 | 56 | |
michael@0 | 57 | </script> |
michael@0 | 58 | </pre> |
michael@0 | 59 | </body> |
michael@0 | 60 | </html> |
michael@0 | 61 |