Index: javax/accessibility/AccessibleAction.java
===================================================================
RCS file: /sources/classpath/classpath/javax/accessibility/AccessibleAction.java,v
retrieving revision 1.7
diff -u -r1.7 AccessibleAction.java
--- javax/accessibility/AccessibleAction.java	15 Apr 2006 21:41:46 -0000	1.7
+++ javax/accessibility/AccessibleAction.java	14 Jan 2008 11:14:37 -0000
@@ -78,6 +78,22 @@
   static final String TOGGLE_EXPAND = "toggle expand";
 
   /**
+   * The name of an action which causes a component to perform its default
+   * action.
+   *
+   * @since 1.6
+   */
+  static final String CLICK = "click";
+
+  /**
+   * The name of an action which toggles the state of a popup, causing a
+   * hidden popup to be displayed and a visible popup to be hidden.
+   *
+   * @since 1.6
+   */
+  static final String TOGGLE_POPUP = "toggle popup";
+
+  /**
    * Get the number possible actions for this object, with the zeroth
    * representing the default action.
    *
Index: javax/accessibility/AccessibleRole.java
===================================================================
RCS file: /sources/classpath/classpath/javax/accessibility/AccessibleRole.java,v
retrieving revision 1.6
diff -u -r1.6 AccessibleRole.java
--- javax/accessibility/AccessibleRole.java	15 Apr 2006 21:41:46 -0000	1.6
+++ javax/accessibility/AccessibleRole.java	14 Jan 2008 11:14:37 -0000
@@ -517,6 +517,19 @@
     = new AccessibleRole("ruler");
 
   /**
+   * A HTML container is an accessible object which contains other
+   * accessible objects that together form some HTML content.  For example,
+   * the content may be a sequence of text containing a link, which
+   * would be represent as two children, one an {@link AccessibleText}
+   * object holding the normal text and the other an
+   * {@link AccessibleHypertext} object representing the link.
+   *
+   * @since 1.6
+   */
+  public static final AccessibleRole HTML_CONTAINER
+    = new AccessibleRole("HTML container");
+
+  /**
    * Create a new constant with a locale independent key. Follow the example,
    * keep the constructor private and make public constants instead.
    *
