content/base/test/test_bug364413.xhtml

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 <html xmlns="http://www.w3.org/1999/xhtml"
michael@0 3 xmlns:foobar="http://www.foobar.com">
michael@0 4 <!--
michael@0 5 https://bugzilla.mozilla.org/show_bug.cgi?id=364413
michael@0 6 -->
michael@0 7 <head>
michael@0 8 <title>Test for Bug 364413</title>
michael@0 9 <!-- XHTML needs explicit script elements -->
michael@0 10 <script type="text/javascript" src="/MochiKit/Base.js"></script>
michael@0 11 <script type="text/javascript" src="/MochiKit/Iter.js"></script>
michael@0 12 <script type="text/javascript" src="/MochiKit/DOM.js"></script>
michael@0 13 <script type="text/javascript" src="/MochiKit/Style.js"></script>
michael@0 14 <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
michael@0 15 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
michael@0 16 </head>
michael@0 17 <body>
michael@0 18 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=364413">Mozilla Bug 364413</a>
michael@0 19 <p id="display"></p>
michael@0 20 <div id="content" style="display: none">
michael@0 21
michael@0 22 </div>
michael@0 23 <div id="test1" foobar:foo="foo"/>
michael@0 24 <pre id="test">
michael@0 25 <script class="testbody" type="text/javascript">
michael@0 26 /** Test for Bug 364413 **/
michael@0 27
michael@0 28 var test1 = document.getElementById("test1");
michael@0 29 var attrNode = test1.getAttributeNodeNS("http://www.foobar.com", "foo");
michael@0 30 function mutationHandler(aEvent) {
michael@0 31 ok(attrNode == aEvent.relatedNode);
michael@0 32 ok(aEvent.target == attrNode.ownerElement);
michael@0 33 }
michael@0 34
michael@0 35 function runTest() {
michael@0 36 test1.removeAttributeNode(attrNode);
michael@0 37 test1.addEventListener("DOMAttrModified", mutationHandler, true);
michael@0 38 test1.setAttributeNodeNS(attrNode);
michael@0 39 test1.removeEventListener("DOMAttrModified", mutationHandler, true);
michael@0 40 }
michael@0 41
michael@0 42 runTest();
michael@0 43 </script>
michael@0 44 </pre>
michael@0 45
michael@0 46 </body>
michael@0 47 </html>
michael@0 48

mercurial