<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.webkit.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4.1"
          urlbase="https://bugs.webkit.org/"
          
          maintainer="admin@webkit.org"
>

    <bug>
          <bug_id>15854</bug_id>
          
          <creation_ts>2007-11-06 02:45:58 -0800</creation_ts>
          <short_desc>Blank Space between &lt;tr&gt; and &lt;td&gt; tags been viewed as a text node.</short_desc>
          <delta_ts>2007-11-15 23:56:01 -0800</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>WebKit</product>
          <component>DOM</component>
          <version>419.x</version>
          <rep_platform>Mac</rep_platform>
          <op_sys>OS X 10.4</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>DUPLICATE</resolution>
          <dup_id>16006</dup_id>
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords>HasReduction, InRadar</keywords>
          <priority>P3</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>0</everconfirmed>
          <reporter name="vasantha">vdhanikonda</reporter>
          <assigned_to name="Nobody">webkit-unassigned</assigned_to>
          <cc>rachna.gupta</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>60391</commentid>
    <comment_count>0</comment_count>
    <who name="vasantha">vdhanikonda</who>
    <bug_when>2007-11-06 02:45:58 -0800</bug_when>
    <thetext>Select Shift Bid Admin.
 Select Filter Shift Bid icon
 Select staff group ACT2S (AC AMR T2 Sacramento)
 Find ACT2 Sac in list, select the edit icon (pencil) in the Option  
  column to the right of ACT2 Sac
 Click on on the Class Assignment tab
 In Sequence column, find number 1. Two column to the left of  
   Sequence 1 column will be a box.
 In the box, click on it, so it can be checked.
 Near the bottom of this window, you will see the Assigned Class  
   button.
 Click on Assigned Class button.
 If it actually worked, you would see a Class assigned to Sequence1.  This    would be seen one column to the left of the Sequence 1 column.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>60395</commentid>
    <comment_count>1</comment_count>
    <who name="David Kilzer (:ddkilzer)">ddkilzer</who>
    <bug_when>2007-11-06 04:17:27 -0800</bug_when>
    <thetext>Is there a Radar for this issue as well?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>60451</commentid>
    <comment_count>2</comment_count>
      <attachid>17068</attachid>
    <who name="rachna Gupta">rachna.gupta</who>
    <bug_when>2007-11-06 16:42:29 -0800</bug_when>
    <thetext>Created attachment 17068
Test Case:</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>60460</commentid>
    <comment_count>3</comment_count>
    <who name="">mitz</who>
    <bug_when>2007-11-06 17:47:42 -0800</bug_when>
    <thetext>For what it&apos;s worth, &lt;http://trac.webkit.org/projects/webkit/changeset/21720&gt; is the change that allowed whitespace-only text nodes in table rows (and some other places inside tables).</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>61256</commentid>
    <comment_count>4</comment_count>
      <attachid>17068</attachid>
    <who name="rachna Gupta">rachna.gupta</who>
    <bug_when>2007-11-14 17:17:51 -0800</bug_when>
    <thetext>Comment on attachment 17068
Test Case: 

Blank Space between &lt;tr&gt; and &lt;td&gt; tags been viewed as a text node.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>61258</commentid>
    <comment_count>5</comment_count>
    <who name="vasantha">vdhanikonda</who>
    <bug_when>2007-11-14 17:27:33 -0800</bug_when>
    <thetext>The blank space given between  the HTML tags like &lt;tr&gt; and &lt;td&gt; is viewed as a text node.As a result accessing the object firstChild.firstChild was returning a null value in Leopard.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>61351</commentid>
    <comment_count>6</comment_count>
      <attachid>17068</attachid>
    <who name="rachna Gupta">rachna.gupta</who>
    <bug_when>2007-11-15 16:38:46 -0800</bug_when>
    <thetext>Comment on attachment 17068
Test Case: 



	  
&lt;HTML&gt; 
&lt;HEAD&gt;
&lt;title&gt;firstparagraph&lt;/title&gt;

&lt;script type=&quot;text/javascript&quot;&gt;
 function trial(obj)
 	{	
 	      alert(obj[0].firstChild.firstChild+&quot;\n&quot;);
 	}
 	  
&lt;/script&gt;

&lt;/head&gt;

&lt;BODY&gt;
&lt;P&gt; We are tesing HTML Document Object Model.&lt;br&gt;
  Click on the button labelled Clickme.  Null as an object should not come.&lt;br&gt;
&lt;/P&gt;
&lt;TABLE id=&quot;test1&quot; name=&quot;test&quot; border=&quot;1&quot; cellspacing=&quot;3&quot; width=&quot;20%&quot;&gt; 
 &lt;tr&gt;
 	&lt;td&gt;name&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 	&lt;td&gt;&lt;input type=&quot;button&quot; id=&quot;btn1&quot; name=&quot;btn&quot;  value=&quot;Clickme&quot; onClick=trial(test1.rows); /&gt;&lt;/td&gt;
 &lt;/tr&gt;
&lt;/table&gt;

&lt;/body&gt;
&lt;/HTML&gt;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>61352</commentid>
    <comment_count>7</comment_count>
      <attachid>17068</attachid>
    <who name="rachna Gupta">rachna.gupta</who>
    <bug_when>2007-11-15 16:41:44 -0800</bug_when>
    <thetext>Comment on attachment 17068
Test Case: 



	  
&lt;HTML&gt; 
&lt;HEAD&gt;
&lt;title&gt;firstparagraph&lt;/title&gt;

&lt;script type=&quot;text/javascript&quot;&gt;
 function trial(obj)
 	{
 		
 		 // alert(&quot;OBJECT firstChild =&quot;+obj[0].firstChild+&quot;\n\n&quot;+
 		 // 		&quot;Accessing the element node &lt;td&gt; which is the child node of &lt;tr&gt; using the Object ,\n tableId.rows[0].firstChild shows a text object &quot;+
 		 // 	    &quot;rather than HTML TABLE CELL ELEMENT as in IE because Leopard views even the BLANK space between &lt;tr&gt; and &lt;td&gt; tag as a text node.&quot;);
 		  alert(obj[0].firstChild.firstChild+&quot;\n&quot;);
 		//  alert(&quot;firstChild.firstChild.nodeValue=&quot;+obj[0].firstChild.firstChild.nodeValue);
 	
 	}
 	  
&lt;/script&gt;

&lt;/head&gt;

&lt;BODY&gt;
&lt;P&gt; We are tesing HTML Document Object Model.&lt;br&gt;
  Click on the button labelled Clickme.  Null as an object should not come.&lt;br&gt;
&lt;/P&gt;
&lt;TABLE id=&quot;test1&quot; name=&quot;test&quot; border=&quot;1&quot; cellspacing=&quot;3&quot; width=&quot;20%&quot;&gt; 
 &lt;tr&gt;
 	&lt;td&gt;name&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 	&lt;td&gt;&lt;input type=&quot;button&quot; id=&quot;btn1&quot; name=&quot;btn&quot;  value=&quot;Clickme&quot; onClick=trial(test1.rows); /&gt;&lt;/td&gt;
 &lt;/tr&gt;
&lt;/table&gt;

&lt;/body&gt;
&lt;/HTML&gt;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>61384</commentid>
    <comment_count>8</comment_count>
    <who name="David Kilzer (:ddkilzer)">ddkilzer</who>
    <bug_when>2007-11-15 22:21:15 -0800</bug_when>
    <thetext>*** Bug 16006 has been marked as a duplicate of this bug. ***</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>61385</commentid>
    <comment_count>9</comment_count>
    <who name="David Kilzer (:ddkilzer)">ddkilzer</who>
    <bug_when>2007-11-15 22:25:08 -0800</bug_when>
    <thetext>Vasantha and Rachna:  Why is this fix needed?  Obviously there&apos;s a reason you&apos;re posting these bugs.

Please contact the Safari team directly (Darin Adler or Maciej Stachowiak) if the reason can&apos;t be posted publicly.

Also, please provide a Radar number (in this bug) since you&apos;ve added the InRadar keyword.  Thanks!
</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>61390</commentid>
    <comment_count>10</comment_count>
    <who name="David Kilzer (:ddkilzer)">ddkilzer</who>
    <bug_when>2007-11-15 23:56:01 -0800</bug_when>
    <thetext>Per user request, reopening Bug 16006 and marking Bug 15854 a duplicate of it.



*** This bug has been marked as a duplicate of 16006 ***</thetext>
  </long_desc>
      
          <attachment
              isobsolete="0"
              ispatch="0"
              isprivate="0"
          >
            <attachid>17068</attachid>
            <date>2007-11-06 16:42:29 -0800</date>
            <delta_ts>2007-11-15 16:38:46 -0800</delta_ts>
            <desc>Test Case: </desc>
            <filename>reducedTestCase.html</filename>
            <type>text/html</type>
            <size>1756</size>
            <attacher name="rachna Gupta">rachna.gupta</attacher>
            
              <data encoding="base64">CgkgIAo8SFRNTD4gCjxIRUFEPgo8dGl0bGU+Zmlyc3RwYXJhZ3JhcGg8L3RpdGxlPgoKPHNjcmlw
dCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiPgogZnVuY3Rpb24gdHJpYWwob2JqKQogCXsKIAkJCiAJ
CSAgYWxlcnQoIk9CSkVDVCBmaXJzdENoaWxkID0iK29ialswXS5maXJzdENoaWxkKyJcblxuIisK
IAkJICAJCSJBY2Nlc3NpbmcgdGhlIGVsZW1lbnQgbm9kZSA8dGQ+IHdoaWNoIGlzIHRoZSBjaGls
ZCBub2RlIG9mIDx0cj4gdXNpbmcgdGhlIE9iamVjdCAsXG4gdGFibGVJZC5yb3dzWzBdLmZpcnN0
Q2hpbGQgc2hvd3MgYSB0ZXh0IG9iamVjdCAiKwogCQkgIAkgICAgInJhdGhlciB0aGFuIEhUTUwg
VEFCTEUgQ0VMTCBFTEVNRU5UIGFzIGluIElFIGJlY2F1c2UgTGVvcGFyZCB2aWV3cyBldmVuIHRo
ZSBCTEFOSyBzcGFjZSBiZXR3ZWVuIDx0cj4gYW5kIDx0ZD4gdGFnIGFzIGEgdGV4dCBub2RlLiIp
OwogCQkgIGFsZXJ0KCJPQkpFQ1QgZmlyc3RDaGlsZC5maXJzdENoaWxkPSIrb2JqWzBdLmZpcnN0
Q2hpbGQuZmlyc3RDaGlsZCsiXG5cbiBTaW5jZSBibGFuayBzcGFjZSBpcyB2aWV3ZWQgYXMgYSB0
ZXh0ICIrCiAJCSAgCQkiXG4gbm9kZSBpbiB0aGUgcHJldmlvdXMgcG9wLXVwIHNvIGFjY2Vzc2lu
ZyBcbiB0YWJsZUlkLnJvd3NbMF0uZmlyc3RDaGlsZC5maXJzdENoaWxkIGdpdmVzIE5VTEwuIik7
CiAJCSAgYWxlcnQoImZpcnN0Q2hpbGQuZmlyc3RDaGlsZC5ub2RlVmFsdWU9IitvYmpbMF0uZmly
c3RDaGlsZC5maXJzdENoaWxkLm5vZGVWYWx1ZSk7CiAJCiAJfQogCSAgCjwvc2NyaXB0PgoKPC9o
ZWFkPgoKPEJPRFk+CjxQPgogIENsaWNrIG9uIHRoZSBidXR0b24gbGFiZWxsZWQgQ2xpY2ttZS4g
UG9wLXVwIEkgd2lsbCBhcHBlYXIgdG8gZGlzcGxheSBob3cgTGVvcGFyZCB2aWV3cyB0aGUgb2Jq
ZWN0IGZpcnN0Q2hpbGQgd2hlcmUgZmlyc3QgY2hpbGQgaXMgdGhlIGVsZW1lbnQgCiAgICAgIG5v
ZGUgJ3RkJyB3aGljaCBpcyB0aGUgY2hpbGQgbm9kZSBvZiAndHInIC4gTGVvcGFyZCB2aWV3cyBl
dmVuIHRoZSBCTEFOSyBzcGFjZSBiZXR3ZWVuIHRyIGFuZCB0ZCB0YWcgYXMgYSB0ZXh0IG5vZGUg
cmF0aGVyIHRoYW4gCiAgICAgIEhUTUwgVEFCTEUgQ0VMTCBFTEVNRU5UIGFzIGluIElFLjxicj48
YnI+CiAgQ2xpY2sgT0suIE5vdyAsUG9wLXVwIElJIHdpbGwgYXBwZWFyIHRvIGRpc3BsYXkgdGhl
IG9iamVjdCBmaXJzdENoaWxkLmZpcnN0Q2hpbGQgLiBTaW5jZSBibGFuayBzcGFjZSBpcyB2aWV3
ZWQgYXMgYSB0ZXh0IG9iamVjdCBpbiB0aGUgCgkgIHByZXZpb3VzIHBvcC11cCBzbyBhY2Nlc3Np
bmcgdGFibGVJZC5yb3dzWzBdLmZpcnN0Q2hpbGQuZmlyc3RDaGlsZCBnaXZlcyBOVUxMIGFzIGFu
IG9iamVjdC48YnI+PGJyPgogIENsaWNrIE9LLiBQb3AtdXAgSUlJIHdpbGwgYXBwZWFyIGluIElF
KGRpc3BsYXlpbmcgdGhlIHZhbHVlIG9mIHRoZSBvYmplY3QgZmlyc3RDaGlsZC5maXJzdENoaWxk
KSBidXQgbm90IGluIExlb3BhcmQgLjxicj48YnI+CjwvUD4KPFRBQkxFIGlkPSJ0ZXN0MSIgbmFt
ZT0idGVzdCIgYm9yZGVyPSIxIiBjZWxsc3BhY2luZz0iMyIgd2lkdGg9IjIwJSI+IAogPHRyPgog
CTx0ZD5uYW1lPC90ZD4KIDwvdHI+CiA8dHI+CiAJPHRkPjxpbnB1dCB0eXBlPSJidXR0b24iIGlk
PSJidG4xIiBuYW1lPSJidG4iICB2YWx1ZT0iQ2xpY2ttZSIgb25DbGljaz10cmlhbCh0ZXN0MS5y
b3dzKTsgLz48L3RkPgogPC90cj4KPC90YWJsZT4KCjwvYm9keT4KPC9IVE1MPg==
</data>

          </attachment>
      

    </bug>

</bugzilla>