dom/tests/mochitest/dom-level2-html/test_HTMLTableRowElement13.html

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

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 content="text/html; charset=UTF-8" http-equiv="Content-Type">
michael@0 6 <title>http://www.w3.org/2001/DOM-Test-Suite/level2/html/HTMLTableRowElement13</title>
michael@0 7 <link type="text/css" rel="stylesheet" href="/tests/SimpleTest/test.css">
michael@0 8 <script src="/tests/SimpleTest/SimpleTest.js" type="text/javascript"></script>
michael@0 9 <script src="DOMTestCase.js" type="text/javascript"></script>
michael@0 10 <script type="text/javascript">
michael@0 11 // expose test function names
michael@0 12 function exposeTestFunctionNames()
michael@0 13 {
michael@0 14 return ['HTMLTableRowElement13'];
michael@0 15 }
michael@0 16
michael@0 17 var docsLoaded = -1000000;
michael@0 18 var builder = null;
michael@0 19
michael@0 20 //
michael@0 21 // This function is called by the testing framework before
michael@0 22 // running the test suite.
michael@0 23 //
michael@0 24 // If there are no configuration exceptions, asynchronous
michael@0 25 // document loading is started. Otherwise, the status
michael@0 26 // is set to complete and the exception is immediately
michael@0 27 // raised when entering the body of the test.
michael@0 28 //
michael@0 29 function setUpPage() {
michael@0 30 setUpPageStatus = 'running';
michael@0 31 try {
michael@0 32 //
michael@0 33 // creates test document builder, may throw exception
michael@0 34 //
michael@0 35 builder = createConfiguredBuilder();
michael@0 36
michael@0 37 docsLoaded = 0;
michael@0 38
michael@0 39 var docRef = null;
michael@0 40 if (typeof(this.doc) != 'undefined') {
michael@0 41 docRef = this.doc;
michael@0 42 }
michael@0 43 docsLoaded += preload(docRef, "doc", "tablerow");
michael@0 44
michael@0 45 if (docsLoaded == 1) {
michael@0 46 setUpPage = 'complete';
michael@0 47 }
michael@0 48 } catch(ex) {
michael@0 49 catchInitializationError(builder, ex);
michael@0 50 setUpPage = 'complete';
michael@0 51 }
michael@0 52 }
michael@0 53
michael@0 54
michael@0 55
michael@0 56 //
michael@0 57 // This method is called on the completion of
michael@0 58 // each asychronous load started in setUpTests.
michael@0 59 //
michael@0 60 // When every synchronous loaded document has completed,
michael@0 61 // the page status is changed which allows the
michael@0 62 // body of the test to be executed.
michael@0 63 function loadComplete() {
michael@0 64 if (++docsLoaded == 1) {
michael@0 65 setUpPageStatus = 'complete';
michael@0 66 runJSUnitTests();
michael@0 67 SimpleTest.finish();
michael@0 68 }
michael@0 69 }
michael@0 70
michael@0 71
michael@0 72 /**
michael@0 73 *
michael@0 74 The deleteCell() method deletes a cell from the current row.
michael@0 75
michael@0 76
michael@0 77 Retrieve the fourth TR element and examine the value of
michael@0 78 the cells length attribute which should be set to six.
michael@0 79 Check the value of the first TD element. Invoke the
michael@0 80 deleteCell() method which will delete a cell from the current row.
michael@0 81 Check the value of the cell at the zero index and also check
michael@0 82 the number of cells which should now be five.
michael@0 83
michael@0 84 * @author NIST
michael@0 85 * @author Rick Rivello
michael@0 86 * @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-html#ID-11738598
michael@0 87 */
michael@0 88 function HTMLTableRowElement13() {
michael@0 89 var success;
michael@0 90 if(checkInitialization(builder, "HTMLTableRowElement13") != null) return;
michael@0 91 var nodeList;
michael@0 92 var cellsnodeList;
michael@0 93 var testNode;
michael@0 94 var trNode;
michael@0 95 var cellNode;
michael@0 96 var value;
michael@0 97 var vcells;
michael@0 98 var doc;
michael@0 99
michael@0 100 var docRef = null;
michael@0 101 if (typeof(this.doc) != 'undefined') {
michael@0 102 docRef = this.doc;
michael@0 103 }
michael@0 104 doc = load(docRef, "doc", "tablerow");
michael@0 105 nodeList = doc.getElementsByTagName("tr");
michael@0 106 assertSize("Asize",5,nodeList);
michael@0 107 testNode = nodeList.item(3);
michael@0 108 cellsnodeList = testNode.cells;
michael@0 109
michael@0 110 vcells = cellsnodeList.length;
michael@0 111
michael@0 112 assertEquals("cellsLink1",6,vcells);
michael@0 113 trNode = cellsnodeList.item(0);
michael@0 114 cellNode = trNode.firstChild;
michael@0 115
michael@0 116 value = cellNode.nodeValue;
michael@0 117
michael@0 118 assertEquals("value1Link","EMP0001",value);
michael@0 119 testNode.deleteCell(0);
michael@0 120 testNode = nodeList.item(3);
michael@0 121 cellsnodeList = testNode.cells;
michael@0 122
michael@0 123 vcells = cellsnodeList.length;
michael@0 124
michael@0 125 assertEquals("cellsLink2",5,vcells);
michael@0 126 trNode = cellsnodeList.item(0);
michael@0 127 cellNode = trNode.firstChild;
michael@0 128
michael@0 129 value = cellNode.nodeValue;
michael@0 130
michael@0 131 assertEquals("value2Link","Margaret Martin",value);
michael@0 132
michael@0 133 }
michael@0 134
michael@0 135 </script>
michael@0 136 </head>
michael@0 137 <body>
michael@0 138 <h2>Test http://www.w3.org/2001/DOM-Test-Suite/level2/html/HTMLTableRowElement13</h2>
michael@0 139 <p>&lt;test name='HTMLTableRowElement13' schemaLocation='http://www.w3.org/2001/DOM-Test-Suite/Level-1 dom1.xsd'&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;metadata&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;title&gt;HTMLTableRowElement13&lt;/title&gt;
michael@0 140 <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;creator&gt;NIST&lt;/creator&gt;
michael@0 141 <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;description&gt;
michael@0 142 The deleteCell() method deletes a cell from the current row.
michael@0 143
michael@0 144
michael@0 145 Retrieve the fourth TR element and examine the value of
michael@0 146 the cells length attribute which should be set to six.
michael@0 147 Check the value of the first TD element. Invoke the
michael@0 148 deleteCell() method which will delete a cell from the current row.
michael@0 149 Check the value of the cell at the zero index and also check
michael@0 150 the number of cells which should now be five.
michael@0 151 &lt;/description&gt;
michael@0 152 <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;contributor&gt;Rick Rivello&lt;/contributor&gt;
michael@0 153 <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;date qualifier='created'&gt;2002-05-06&lt;/date&gt;
michael@0 154 <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;subject resource='<a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-html#ID-11738598">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-html#ID-11738598</a>'/&gt;
michael@0 155 <br>&lt;/metadata&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;var name='nodeList' type='NodeList'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;var name='cellsnodeList' type='HTMLCollection'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;var name='testNode' type='Node'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;var name='trNode' type='Node'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;var name='cellNode' type='Node'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;var name='value' type='DOMString'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;var name='vcells' type='int'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;var name='doc' type='Document'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;load var='doc' href='tablerow' willBeModified='true'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;getElementsByTagName interface='Document' obj='doc' var='nodeList' tagname='"tr"'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;assertSize collection='nodeList' size='5' <a id="Asize">id='Asize'</a>/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;item interface='NodeList' obj='nodeList' var='testNode' index='3'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;cells interface='HTMLTableRowElement' obj='testNode' var='cellsnodeList'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;length interface='HTMLCollection' obj='cellsnodeList' var='vcells'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;assertEquals actual='vcells' expected='6' <a id="cellsLink1">id='cellsLink1'</a> ignoreCase='false'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;item interface='HTMLCollection' obj='cellsnodeList' var='trNode' index='0'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;firstChild interface='Node' obj='trNode' var='cellNode'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;nodeValue obj='cellNode' var='value'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;assertEquals actual='value' expected='"EMP0001"' <a id="value1Link">id='value1Link'</a> ignoreCase='false'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;deleteCell interface='HTMLTableRowElement' obj='testNode' index='0'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;item interface='NodeList' obj='nodeList' var='testNode' index='3'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;cells interface='HTMLTableRowElement' obj='testNode' var='cellsnodeList'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;length interface='HTMLCollection' obj='cellsnodeList' var='vcells'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;assertEquals actual='vcells' expected='5' <a id="cellsLink2">id='cellsLink2'</a> ignoreCase='false'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;item interface='HTMLCollection' obj='cellsnodeList' var='trNode' index='0'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;firstChild interface='Node' obj='trNode' var='cellNode'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;nodeValue obj='cellNode' var='value'/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;assertEquals actual='value' expected='"Margaret Martin"' <a id="value2Link">id='value2Link'</a> ignoreCase='false'/&gt;<br>&lt;/test&gt;<br>
michael@0 156 </p>
michael@0 157 <p>
michael@0 158 Copyright (c) 2001-2004 World Wide Web Consortium,
michael@0 159 (Massachusetts Institute of Technology, Institut National de
michael@0 160 Recherche en Informatique et en Automatique, Keio University). All
michael@0 161 Rights Reserved. This program is distributed under the W3C's Software
michael@0 162 Intellectual Property License. This program is distributed in the
michael@0 163 hope that it will be useful, but WITHOUT ANY WARRANTY; without even
michael@0 164 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
michael@0 165 PURPOSE.
michael@0 166 </p>
michael@0 167 <p>See W3C License <a href="http://www.w3.org/Consortium/Legal/">http://www.w3.org/Consortium/Legal/</a>
michael@0 168 for more details.</p>
michael@0 169 <iframe name="doc" src="files/tablerow.html"></iframe>
michael@0 170 <br>
michael@0 171 </body>
michael@0 172 </html>

mercurial