content/base/test/chrome/test_bug339494.xul

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

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

mercurial