kooloveme / thtmlviewer

Automatically exported from code.google.com/p/thtmlviewer
Other
0 stars 0 forks source link

<form><select> doesn't work #310

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Which steps will reproduce the problem?
1. Load this html file, the select control does not exists

<html>
<body>
<form><select><option>huh</option><option>huh 2</option></select></form>
</body>
</html>

Original issue reported on code.google.com by Sven.Har...@gmail.com on 15 Oct 2013 at 10:43

GoogleCodeExporter commented 9 years ago
Thanks for spotting this issue.

The control actually is there, but a refresh seems to be missing ...

Original comment by OrphanCat on 1 Nov 2013 at 5:19

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
Revision 431 works ok. The problem starts in 432.
In revision 432, file readhtml.pas, line 3145, the following was deleted:
     SelectSy:
        begin
        DoBeforeSy(SaveSy);
        DoSelect;
        DoAfterSy(SaveSy);
        end;
If you put it in revision 443, line 3159, everything is OK

Original comment by dkou...@gmail.com on 10 Nov 2013 at 7:15

GoogleCodeExporter commented 9 years ago
Thanks for investigation, dkounal.

r444 brings back case "SelectSy".

Original comment by OrphanCat on 11 Nov 2013 at 7:49