Author: dmaliarevich
Date: 2009-04-06 10:16:18 -0400 (Mon, 06 Apr 2009)
New Revision: 14516
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/resources/SeamTest/WebContent/pages/components/formattedText.xhtml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/resources/SeamTest/WebContent/pages/components/formattedText.xhtml.xml
Log:
https://jira.jboss.org/jira/browse/JBIDE-4104, NPE was fixed.
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/resources/SeamTest/WebContent/pages/components/formattedText.xhtml
===================================================================
---
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/resources/SeamTest/WebContent/pages/components/formattedText.xhtml 2009-04-06
11:52:10 UTC (rev 14515)
+++
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/resources/SeamTest/WebContent/pages/components/formattedText.xhtml 2009-04-06
14:16:18 UTC (rev 14516)
@@ -6,6 +6,10 @@
<head>
</head>
<body>
- <s:formattedText value="#{blog.text}" id="id1"/>
+ <s:formattedText value="#{blog.text}" id="id1"/>
+ <s:formattedText id="id2">
+ It's easy to make *emphasis*, |monospace|,~deleted text~, super^scripts^ or
_underlines_.
+ </s:formattedText>
+ <s:formattedText id="id3" value="It's easy to make *emphasis*,
|monospace|,~deleted text~, super^scripts^ or _underlines_." />
</body>
</html>
\ No newline at end of file
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/resources/SeamTest/WebContent/pages/components/formattedText.xhtml.xml
===================================================================
---
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/resources/SeamTest/WebContent/pages/components/formattedText.xhtml.xml 2009-04-06
11:52:10 UTC (rev 14515)
+++
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/resources/SeamTest/WebContent/pages/components/formattedText.xhtml.xml 2009-04-06
14:16:18 UTC (rev 14516)
@@ -1,12 +1,50 @@
<tests>
<test id="id1">
- <SPAN>
- <OL>
- <LI>
- {blog.text}
+ <SPAN>
+ <OL>
+ <LI>
+ {blog.text}
</LI>
- </OL>
- <BR VPE:PSEUDO-ELEMENT="yes" STYLE="font-style: italic; color:
green; -moz-user-modify: read-only;"/>
- </SPAN>
+ </OL>
+ <BR VPE:PSEUDO-ELEMENT="yes"
+ STYLE="font-style: italic; color: green; -moz-user-modify: read-only;"
/>
+ </SPAN>
</test>
+ <test id="id2">
+ <SPAN>
+ <SPAN CLASS="vpe-text">
+ It's easy to make *emphasis*, |monospace|,~deleted text~, super^scripts^ or
_underlines_.
+ </SPAN>
+ </SPAN>
+ </test>
+
+ <test id="id3">
+ <SPAN>
+ <P>
+ It's easy to make
+ <B>
+ emphasis
+ </B>
+ ,
+ <TT>
+ monospace
+ </TT>
+ ,
+ <DEL>
+ deleted text
+ </DEL>
+ , super
+ <SUP>
+ scripts
+ </SUP>
+ or
+ <U>
+ underlines
+ </U>
+ .
+ </P>
+ <BR VPE:PSEUDO-ELEMENT="yes"
+ STYLE="font-style: italic; color: green; -moz-user-modify: read-only;"
/>
+ </SPAN>
+ </test>
</tests>
\ No newline at end of file