Closed
Bug 120170
Opened 24 years ago
Closed 24 years ago
Border problems with table >= 1311 rows
Categories
(Core :: Layout: Tables, defect)
Tracking
()
VERIFIED
WORKSFORME
People
(Reporter: thepeng, Assigned: karnaze)
References
()
Details
Attachments
(2 files)
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.7) Gecko/20011221
BuildID: 2001122108
I've got a table thats greater than 2000 rows and the size of 2 columns.
The outer border looks like it comes from the top.
I'll try it to make it in ascii art ;)
Home | Bookmarks
----------------------
Mozilla Tabs...
----------------------
|_________|
---------
| 1 | 2 |
---------
---------
| 1 | 2 |
---------
---------
| 1 | 2 |
---------
---------
| 1 | 2 |
---------
-----------------
after arround 1000 rows the outer table border appears
but it start at the middel of a row like this :
(sometime it makes a horizontal line throught a cell pair!)
---------
| 1 | 2 |
---------
---------
|| 1 | 2 ||
|---------|
|---------|
|| 1 | 2 ||
|---------|
|---------|
|| 1 | 2 ||
|---------|
and arround 5 pages down it disapears again!
Ive written a php programm where you type in 2 years for
example 2000 and 2002 and it calculates on which day is
eastern and print it for each year in a table left side
the year and in the right side the Day and Month.
it works fine but when i let create table with over 1310 rows EXACTLY
the bug appears! (eastern from year 1 to 1310 incl a table header "Year" and
"Day" = 1311)
Reproducible: Always
Steps to Reproduce:
1. just use my example code!
2.
3.
<html>
<head>
<table border>
<?php
for ($i=1;$i<=1311;$i++)
{
echo "<tr>";
echo "<td>row</td>";
echo "<td>$i</td>";
echo "</tr>";
}
?>
<table>
</head>
</html>
Comment 1•24 years ago
|
||
your testcase did not work for me. it does not seem to like the php (at least
in my copy/pasted version). Please create an attachment testcase.
Comment 3•24 years ago
|
||
worksforme on http://www.thepeng.org/mozillarulez.php with linux trunk
2002-01-07-06 and linux trunk CVS from 2002-01-15.
Comment 4•24 years ago
|
||
Ok, this is freaky. Really, _REALLY_ freaky.
I see the outer border doing very strange things. First it starts at about line
9. Then I scroll down to the bottom & back up, and now it starts at line 7.
Then I resize the window, and it disappears from the visible area altogether. I
scroll, and it starts just off the bottom of the visible page. Anything that
causes a window repaint does strange things.
Attaching two screenshots. To get these, I did the following:
1. load page
2. take screenshot 1, paste into irfanview & save
3. scroll moz window down to about row 50 & back to top
4. take screenshot 2
Win98SE, 2002011103
Confirming, OS -> All
Status: UNCONFIRMED → NEW
Ever confirmed: true
OS: Linux → All
Comment 5•24 years ago
|
||
Comment 6•24 years ago
|
||
Comment 7•24 years ago
|
||
htmltables for now, might be layoutish
Assignee: asa → karnaze
Component: Browser-General → HTMLTables
QA Contact: doronr → amar
Comment 8•24 years ago
|
||
I'm seeing something very similar at http://www.pixelmaps.com/index.php, which
has a lot fewer than 1311 rows. I'll try to knock up a small test case.
this really seems to be working for me, both testcases (with todays build). im
gonna makr this worksforme just to get it re-confiremd. most wierd.
Status: NEW → RESOLVED
Closed: 24 years ago
OS: All → Windows 3.1
Resolution: --- → WORKSFORME
Comment 10•24 years ago
|
||
Yup, the original testcase now WFM, win98SE, 2002020803.
verifying WFM.
Status: RESOLVED → VERIFIED
Comment 11•22 years ago
|
||
Changing: (OS) Windows 3.1 -> All, per comment 4.
(This will help on bug 165825 :-))
OS: Windows 3.1 → All
You need to log in
before you can comment on or make changes to this bug.
Description
•