version 1.101, 2003/03/19 14:15:29
|
version 1.102, 2003/03/21 11:37:33
|
Line 199 class="fixed">The <i>chrome</i> URL that
|
Line 199 class="fixed">The <i>chrome</i> URL that
|
<li>On page 120: '<b class="broken">dump(l+'\n');</b>' has been changed to '<b class="fixed">dump(len+'\n');</b>'<br><br> |
<li>On page 120: '<b class="broken">dump(l+'\n');</b>' has been changed to '<b class="fixed">dump(len+'\n');</b>'<br><br> |
</li> |
</li> |
|
|
|
<li>On page 123: Example 5-3 |
|
<xmp class="broken"> |
|
for (var i=0; i</chex.length; i++) |
|
chex[i].setAttributte("checked", "false"); |
|
for (var i=0; i</unchex.length; i++) |
|
unchex[i].setAttributte("checked", "true"); |
|
</xmp> |
|
has been changed to |
|
<xmp class="fixed"> |
|
for (var i=0; i</chex.length; i++) |
|
chex[i].setAttribute("disabled", "false"); |
|
for (var i=0; i</unchex.length; i++) |
|
unchex[i].setAttribute("disabled", "true"); |
|
</xmp> |
|
<br> |
|
</li> |
|
|
<li>On page 135: Example 5-11 has been changed to |
<li>On page 135: Example 5-11 has been changed to |
<xmp class="fixed"> |
<xmp class="fixed"> |
<head> |
<head> |
Line 369 function NSGetModule(compMgr, fileSpec)
|
Line 386 function NSGetModule(compMgr, fileSpec)
|
</xmp> |
</xmp> |
</li> |
</li> |
|
|
|
<li>On page 237: Example 8-13, line 9 |
|
<xmp class="broken"> |
|
NS_INIT_REFCNT( ); // has been depricated use NS_INIT_ISUPPORTS() |
|
mValue = PL_strdup("default value"); |
|
</xmp> |
|
has been changed to |
|
<xmp class="fixed"> |
|
// NS_INIT_REFCNT( ); // has been depricated use NS_INIT_ISUPPORTS() |
|
NS_INIT_ISUPPORTS(); |
|
mValue = PL_strdup("default value"); |
|
</xmp> |
|
<br> |
|
</li> |
|
|
<li>On page 239: Example 8-15 has been changed to <br/></li> |
<li>On page 239: Example 8-15 has been changed to <br/></li> |
|
|
<xmp class="fixed"> |
<xmp class="fixed"> |