JSF 2.2 イノベーションの html5 パススルー属性機能を使用しようとしています。
m09 バージョンで動作するコンポーネント タグの名前空間属性。
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.faces</artifactId>
<version>2.2.0-m09</version>
</dependency>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://java.sun.com/jsf/passthrough">
<h:head>
<title>HTML 5</title>
</h:head>
<h:body>
<h:inputText p:placeholder="Enter text"/>
</h:body>
</html>
ただし、新しいバージョンでは動作しません。
f:passThroughAttributes タグは新しいバージョンで動作します。
なんで?