I may have found a bug, but I'm not sure, so I'm going to post here
first.

The attached HTML code does NOT appear to function correctly.  The
list of page links on the top-right of the page are not properly
recognized when the div positioning attribute is not explicitly
specified.  The first few are ignored, but the rest function
correctly.  (Note that IE renders the html correctly, and all links
function as well).

I have tested this with 1.2.1, 1.3b Gecko/20030210, both on Windows
NT.  Both behave the same.

The problem can be made to go away by specifying "position:absolute"
for the div, but methinks that links should work regardless of what
the positioning attribute says.

Opinions?

<html>
<head>
<style>
#left-content {
        position: absolute;
        xtop: 50px;
        left: 10px;
        width: 250px;
}

#main-content {
        margin-top: 10px;
        margin-left: 170px;

##
## Uncomment the following line to make links work
## properly
##

#        position: absolute;
}
</style>
</head>
<body>

<div id="left-content">
<table cellspacing="0" cellpadding="0" width="150">
  <tbody><tr><td height="1" class="menu-border" colspan="3"></td></tr>
  <tr>
    <td width="1" ></td>
    <td width="148">Miscellaneous</td>
    <td width="1"></td>
  </tr>
  <tr>
    <td colspan="3"></td>
  </tr>
  <tr>
    <td width="1"><br></td>
    <td>
      <div>
         <a href="http://some.server.com/";>Home</a>
      </div></td>
   <td width="1"><br></td>
 </tr>
  <tr>
    <td width="1"><br></td>
    <td>
      <div>
         <a href="http://some.server.com/signoff?url=/";>Logout</a>
      </div></td>
   <td width="1"><br></td>
 </tr>
<tr><td height="1" colspan="3"></td></tr>
</tbody></table>
</p></div>

<div id="main-content">
        &lt;&lt;
        <a 
href="http://some.server.com/security/listUsers.do?action=gotoPage&amp;page=2";>&gt;&gt;</a>
           <b>1</b>
              <a 
href="http://some.server.com/security/listUsers.do?action=gotoPage&amp;page=2";>2</a>
              <a 
href="http://some.server.com/security/listUsers.do?action=gotoPage&amp;page=3";>3</a>
              <a 
href="http://some.server.com/security/listUsers.do?action=gotoPage&amp;page=4";>4</a>
                ...
              <a 
href="http://some.server.com/security/listUsers.do?action=gotoPage&amp;page=24";>24</a>
              <a 
href="http://some.server.com/security/listUsers.do?action=gotoPage&amp;page=25";>25</a>
              <a 
href="http://some.server.com/security/listUsers.do?action=gotoPage&amp;page=26";>26</a>
     </p><p>

</body></html>

Many thanks!

     -klm.

Reply via email to