Status: Available
Owner: [email protected]
CC: [email protected],  [email protected]
Labels: Type-Bug Pri-2 OS-All Area-Compat Evangelism RTL

New issue 8307 by [email protected]: notes.co.il: captcha link not  
displayed for posting replies
http://code.google.com/p/chromium/issues/detail?id=8307

What steps will reproduce the problem?
1. Navigate to http://www.notes.co.il/yaelsela/53630.asp
2. Response form at bottom of page is missing the captcha image so it's not  
possible to post a
response.

Analysis:
This is a very simple bug in the website code and not a bug in WebKit, the  
fix is very easy - an
explanation follows:

If you click the הוסף תגובות link then the captcha image appears.

The original intention was for the response form to be hidden when first  
loading the page and
for the הוסף תגובות link to make it visible and show the captcha.

The method used to do this is that the form is wrapped in a :
<span style="display:none;" id="replyDiv1">
<form name="replay" method="post" action="/inc/reply_submit.asp">
...
</form>
</span>

In WebKit the form is visible from the start since it's a block level  
element and span is an inline
element so the above code is illegal.

Proposed fix:
Changing the code to use a div rather than a span should fix this.

So instead of the above code, you would have:
<div style="display:none;" id="replyDiv1">
<form name="replay" method="post" action="/inc/reply_submit.asp">
...
</form>
</div>


--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~----------~----~----~----~------~----~------~--~---

Reply via email to