[Webkit-unassigned] [Bug 12246] FCKeditor: Hidden fields doesn't show up

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Mar 10 03:15:40 PST 2007


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





------- Comment #2 from fredck at fredck.com  2007-03-10 03:15 PDT -------
The hidden field "magic" is simply done with CSS:

----

input[type="hidden"]
{
        display: inline;
        width:20px;
        height:20px;
        border:1px dotted #FF0000 ;
        background-image:
url(http://www.fckeditor.net/fckeditor/editor/css/behaviors/hiddenfield.gif);
        background-repeat: no-repeat;
}

input[type="hidden"]:after
{
        padding-left: 20px;
        content: "" ;
}

----

I've tried the above definitions with <span> and it worked well. So, I believe
that the CSS selectors are working properly.

Probably the buggy thing here is "display:inline". Maybe WebKit is just saying
"hidden is hidden", and doesn't do any work to possibly display those kings of
elements. I really don't know, it is just a guess. If this is true, we could
open    a dedicated ticket for it.

I think I'll be able to make changes in the editor to not use CSS for it. I'll
work on it now. I'll come with more news soon.


-- 
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