* Install a script in the same window as GWT, turn off the tag removal.
*/
public void testInjectDirectWithoutRemoveTag() {
assertFalse(nativeTest3Worked());
String scriptBody = "__ti3_var__ = 3;";
new FromString(scriptBody).setRemoveTag(false).inject();
boolean worked = nativeTest3Worked();
JavaScriptObject scriptElement = findScriptTextInThisWindow(scriptBody);
if (!isIE8Or9()) {
cleanupThisWindow("__ti3_var__", scriptElement);
assertFalse("cleanup failed", nativeTest3Worked());