Un-breaks the build by:
- removing a couple of tests from StyleTest that use property values
  unsupported by linux hosted mode.
- fixing a subtle breakage introduced in DecoratedPopupPanel by the removal of
  a 'super.' prefix.
Review: rice (DecoratedPopupPanel), jlabanca (TBR, for StyleTest)


git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@5374 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/user/client/ui/DecoratedPopupPanel.java b/user/src/com/google/gwt/user/client/ui/DecoratedPopupPanel.java
index e8b73a4..275daa5 100644
--- a/user/src/com/google/gwt/user/client/ui/DecoratedPopupPanel.java
+++ b/user/src/com/google/gwt/user/client/ui/DecoratedPopupPanel.java
@@ -130,7 +130,7 @@
     decPanel = new DecoratorPanel(rowStyles, 1);
     decPanel.setStyleName("");
     setStylePrimaryName(DEFAULT_STYLENAME);
-    setWidget(decPanel);
+    super.setWidget(decPanel);
     setStyleName(getContainerElement(), "popupContent", false);
     setStyleName(decPanel.getContainerElement(), prefix + "Content", true);
   }
diff --git a/user/test/com/google/gwt/dom/client/StyleTest.java b/user/test/com/google/gwt/dom/client/StyleTest.java
index eff4259..8ea8c30 100644
--- a/user/test/com/google/gwt/dom/client/StyleTest.java
+++ b/user/test/com/google/gwt/dom/client/StyleTest.java
@@ -84,10 +84,15 @@
     assertEquals(Cursor.WAIT, style.getCursor());
     style.setCursor(Cursor.HELP);
     assertEquals(Cursor.HELP, style.getCursor());
+
+    // These aren't supported on old mozilla, so testing them will break.
+    // TODO: re-enable these cases when we finally drop linux hosted mode.
+    /*
     style.setCursor(Cursor.COL_RESIZE);
     assertEquals(Cursor.COL_RESIZE, style.getCursor());
     style.setCursor(Cursor.ROW_RESIZE);
     assertEquals(Cursor.ROW_RESIZE, style.getCursor());
+    */
   }
 
   public void testDisplay() {
@@ -100,8 +105,13 @@
     assertEquals(Display.BLOCK, style.getDisplay());
     style.setDisplay(Display.INLINE);
     assertEquals(Display.INLINE, style.getDisplay());
+
+    // Not supported on old mozilla, so testing it will break.
+    // TODO: re-enable these cases when we finally drop linux hosted mode.
+    /*
     style.setDisplay(Display.INLINE_BLOCK);
     assertEquals(Display.INLINE_BLOCK, style.getDisplay());
+    */
   }
 
   public void testFontStyle() {