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