dom/tests/mochitest/dom-level2-core/test_setNamedItemNS03.html

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

michael@0 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd">
michael@0 2 <html>
michael@0 3 <head>
michael@0 4 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
michael@0 5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
michael@0 6 <title>http://www.w3.org/2001/DOM-Test-Suite/level2/core/setNamedItemNS03</title>
michael@0 7 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css">
michael@0 8 <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
michael@0 9 <script type="text/javascript" src="DOMTestCase.js"></script>
michael@0 10 <script type="text/javascript" src="exclusions.js"></script>
michael@0 11 <script type="text/javascript">
michael@0 12 // expose test function names
michael@0 13 function exposeTestFunctionNames()
michael@0 14 {
michael@0 15 return ['setNamedItemNS03'];
michael@0 16 }
michael@0 17
michael@0 18 var docsLoaded = -1000000;
michael@0 19 var builder = null;
michael@0 20
michael@0 21 //
michael@0 22 // This function is called by the testing framework before
michael@0 23 // running the test suite.
michael@0 24 //
michael@0 25 // If there are no configuration exceptions, asynchronous
michael@0 26 // document loading is started. Otherwise, the status
michael@0 27 // is set to complete and the exception is immediately
michael@0 28 // raised when entering the body of the test.
michael@0 29 //
michael@0 30 function setUpPage() {
michael@0 31 setUpPageStatus = 'running';
michael@0 32 try {
michael@0 33 //
michael@0 34 // creates test document builder, may throw exception
michael@0 35 //
michael@0 36 builder = createConfiguredBuilder();
michael@0 37
michael@0 38 docsLoaded = 0;
michael@0 39
michael@0 40 var docRef = null;
michael@0 41 if (typeof(this.doc) != 'undefined') {
michael@0 42 docRef = this.doc;
michael@0 43 }
michael@0 44 docsLoaded += preload(docRef, "doc", "staffNS");
michael@0 45
michael@0 46 if (docsLoaded == 1) {
michael@0 47 setUpPage = 'complete';
michael@0 48 }
michael@0 49 } catch(ex) {
michael@0 50 catchInitializationError(builder, ex);
michael@0 51 setUpPage = 'complete';
michael@0 52 }
michael@0 53 }
michael@0 54
michael@0 55 //
michael@0 56 // This method is called on the completion of
michael@0 57 // each asychronous load started in setUpTests.
michael@0 58 //
michael@0 59 // When every synchronous loaded document has completed,
michael@0 60 // the page status is changed which allows the
michael@0 61 // body of the test to be executed.
michael@0 62 function loadComplete() {
michael@0 63 if (++docsLoaded == 1) {
michael@0 64 setUpPageStatus = 'complete';
michael@0 65 runJSUnitTests();
michael@0 66 markTodos();
michael@0 67 SimpleTest.finish();
michael@0 68 }
michael@0 69 }
michael@0 70
michael@0 71 var docName = 'setNamedItemNS03';
michael@0 72
michael@0 73
michael@0 74 /**
michael@0 75 *
michael@0 76 The "setNamedItemNS(arg)" method for a
michael@0 77 NamedNodeMap should add a node using its namespaceURI and localName given that
michael@0 78 there is no existing node with the same namespaceURI and localName in the map.
michael@0 79
michael@0 80 Create an attr node with namespaceURI "http://www.nist.gov",qualifiedName
michael@0 81 "prefix:newAttr" and value "newValue".
michael@0 82 Invoke method setNamedItemNS(arg) on the map of the first "address"
michael@0 83 element where arg is identified by the namespaceURI and qualifiedName
michael@0 84 from above. Method should return the newly added attr node.
michael@0 85
michael@0 86 * @author NIST
michael@0 87 * @author Mary Brady
michael@0 88 * @see http://www.w3.org/TR/DOM-Level-2-Core/core#ID-F68D080
michael@0 89 */
michael@0 90 function setNamedItemNS03() {
michael@0 91 var success;
michael@0 92 if(checkInitialization(builder, "setNamedItemNS03") != null) return;
michael@0 93 var namespaceURI = "http://www.nist.gov";
michael@0 94 var qualifiedName = "prefix:newAttr";
michael@0 95 var doc;
michael@0 96 var arg;
michael@0 97 var elementList;
michael@0 98 var testAddress;
michael@0 99 var attributes;
michael@0 100 var retnode;
michael@0 101 var value;
michael@0 102 var setNode;
michael@0 103
michael@0 104 var docRef = null;
michael@0 105 if (typeof(this.doc) != 'undefined') {
michael@0 106 docRef = this.doc;
michael@0 107 }
michael@0 108 doc = load(docRef, "doc", "staffNS");
michael@0 109 arg = doc.createAttributeNS(namespaceURI,qualifiedName);
michael@0 110 arg.nodeValue = "newValue";
michael@0 111
michael@0 112 elementList = doc.getElementsByTagName("address");
michael@0 113 testAddress = elementList.item(0);
michael@0 114 attributes = testAddress.attributes;
michael@0 115
michael@0 116 setNode = attributes.setNamedItemNS(arg);
michael@0 117 retnode = attributes.getNamedItemNS(namespaceURI,"newAttr");
michael@0 118 value = retnode.nodeValue;
michael@0 119
michael@0 120 assertEquals("throw_Equals","newValue",value);
michael@0 121
michael@0 122 }
michael@0 123
michael@0 124 </script>
michael@0 125 </head>
michael@0 126 <body>
michael@0 127 <h2>Test http://www.w3.org/2001/DOM-Test-Suite/level2/core/setNamedItemNS03</h2>
michael@0 128 <p></p>
michael@0 129 <p>
michael@0 130 Copyright (c) 2001-2004 World Wide Web Consortium,
michael@0 131 (Massachusetts Institute of Technology, European Research Consortium
michael@0 132 for Informatics and Mathematics, Keio University). All
michael@0 133 Rights Reserved. This work is distributed under the <a href="http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231">W3C(r) Software License</a> in the
michael@0 134 hope that it will be useful, but WITHOUT ANY WARRANTY; without even
michael@0 135 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
michael@0 136 </p>
michael@0 137 </body>
michael@0 138 </html>

mercurial