Disabling test for null on getBrowserById for DOM elements without DTD when running on Chrome 11 and beyond

Review at http://gwt-code-reviews.appspot.com/1462805


git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@10354 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/test/com/google/gwt/xml/client/XMLTest.java b/user/test/com/google/gwt/xml/client/XMLTest.java
index 14cc147..26c1061 100644
--- a/user/test/com/google/gwt/xml/client/XMLTest.java
+++ b/user/test/com/google/gwt/xml/client/XMLTest.java
@@ -217,8 +217,8 @@
 
     // we didn't define a dtd, so no id for us
     Element e1NodeDirect = d.getElementById("e1Id");
-    // Chrome 11 and 12 fail to implement this behavior
-    if (!Window.Navigator.getUserAgent().matches(".*Chrome/1[12]\\..*")) {
+    // Chrome 11 and up fail to implement this behavior
+    if (!Window.Navigator.getUserAgent().matches(".*Chrome/(1[1-9]|[2-9][0-9])\\..*")) {
       assertNull(e1NodeDirect);
     }