Index: InputHtmlTag.java
===================================================================
--- InputHtmlTag.java	(revision 332323)
+++ InputHtmlTag.java	(working copy)
@@ -52,6 +52,8 @@
     private String displayValueOnly;
 	private String displayValueOnlyStyle;
 	private String displayValueOnlyStyleClass;
+        
+    private String imageLibrary;    
 
     private String immediate;
     private String required;
@@ -82,6 +84,8 @@
         displayValueOnly=null;
         displayValueOnlyStyle=null;
         displayValueOnlyStyleClass=null;
+        
+        imageLibrary=null;
 
 		immediate=null;
         required=null;
@@ -97,6 +101,7 @@
 
 		setStringProperty(component, "fallback", fallback);
         setStringProperty(component, "type", type);
+        setStringProperty(component, "imageLibrary", imageLibrary);
 
         setBooleanProperty(component, "allowEditSource", allowEditSource);
         setBooleanProperty(component, "allowExternalLinks", allowExternalLinks);
@@ -186,6 +191,10 @@
     public void setShowDebugToolBox(String showDebugToolBox){
         this.showDebugToolBox = showDebugToolBox;
     }
+    
+    public void setImageLibrary(String imageLibrary){
+        this.imageLibrary = imageLibrary;
+    }    
 
     public void setEnabledOnUserRole(String enabledOnUserRole){
         this.enabledOnUserRole = enabledOnUserRole;
