[Webkit-unassigned] [Bug 18151] New: images not aligned horizontally in a row because of unclosed div in javascript

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Mar 27 10:49:53 PDT 2008


http://bugs.webkit.org/show_bug.cgi?id=18151

           Summary: images not aligned horizontally in a row because of
                    unclosed div in javascript
           Product: WebKit
           Version: 525.x (Safari 3.1)
          Platform: PC
               URL: http://fotoalbumy.azet.sk/
        OS/Version: Windows XP
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: JavaScriptCore
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: help.improve.webkit at gmail.com
                CC: help.improve.webkit at gmail.com


I Steps:
Go to 
http://fotoalbumy.azet.sk/
Click on any image to see album.
Or go directly to :
http://fotoalbumy.azet.sk/ludka521/its-my-live/?&i7=160447449

II Issue:
The album images are not horizontally aligned in a row rather they are aligned
vertically as a column.

III Conclusion:
The images are being displayed through javascript by looping through the number
of available images. The issue is caused by an unclosed div after the images.

for (i = 1; i <= 3; i++) {              
                out = out + '<li>';
                out += '<div style="width:120px;height:130px; border:1px solid
red;">';
                out += '</div>';
            out = out + '<div class="fotoInfo">';
                out = out + '</li>';
        }

out += '</div>'; is missing after out = out + '<div class="fotoInfo">';

IV Other browsers:
IE7: ok
FF3: ok
Opera9.24: ok

V Nightly tested: 31315


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.


More information about the webkit-unassigned mailing list