Hi Try setting the page encoding to UTF-8. I suppose in that case, the default response writer does not found the encoding, so in that case it escape the space.
regards, Leonardo Uribe 2013/9/29 Karl Kildén <karl.kil...@gmail.com> > Hello, > > I tried the snapshot: myfaces-bundle-2.2.0-20130927.112420-1540 > > I got this simple snippet to work except spaces show as %20 > > <html xmlns="http://www.w3.org/1999/xhtml" > xmlns:h="http://xmlns.jcp.org/jsf/html" > xmlns:pt="http://xmlns.jcp.org/jsf/passthrough"> > <h:head><title>JSF 2.2</title></h:head> > <h:body> > <h:form id="form"> > <h:inputText id="email" value="#{bean.email}" > pt:type="email" pt:placeholder="test test"/> > </h:form> > </h:body> > </html> > > Am I missing something? No difference if I used a bundle rather then inline > > cheers >