A solution is found here :
Set the direction of <html> element to "ltr" while setting the direction of <body> element to "rtl". I tried this solution, it works. Great!
html {direction:ltr;}
body {direction:rtl;}
<script type="text/javascript">function fn() {var ele = document.getElementById("test");if (ele) {ele.innerHTML = "Content set by script ";window.clearTimeout(arguments.callee._timeout);}else {arguments.callee._timeout = window.setTimeout(arguments.callee, 500);}}fn();</script>
<span id="test"></span>
I was trying to compile Apache Axiom using Maven 2.0.9. But it didn't work when I was using IBM JDK 6 SR1. Then I found this issue. It turns out to be a very interesting problem with IBM JDK 6 SR1.
So I repeated the same test on my machine. Yeah, I have to say the output is quite weird. How can you image this kind of problem occurs in the JDK?
input, textarea{color: red;font-family: Verdana,Arial,Sans-serif;font-size: 0.8em;}
<available file=\"${your.file.path.here}\" property=\"your.file.path.here.present\"/>
<if>
<equals arg1=\"${your.file.path.here.present}\" arg2=\"true\"/>
<then>
</then>
<else>
</else>
</if>
Technology changes life