Revision: 7483
http://htmlunit.svn.sourceforge.net/htmlunit/?rev=7483&view=rev
Author: asashour
Date: 2012-10-01 06:11:04 +0000 (Mon, 01 Oct 2012)
Log Message:
-----------
tests: remove jQuery 1.2.6 and 1.7.3-git
Modified Paths:
--------------
trunk/htmlunit/src/test/resources/libraries/jQuery/README
Removed Paths:
-------------
trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/libraries/JQuery126LocalTest.java
trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/libraries/JQuery126Test.java
trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/libraries/JQuery173GitTest.java
trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/libraries/JQueryTestBase.java
trunk/htmlunit/src/test/resources/libraries/jQuery/1.2.6/
trunk/htmlunit/src/test/resources/libraries/jQuery/1.7.3-git/
Deleted: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/libraries/JQuery126LocalTest.java
===================================================================
--- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/libraries/JQuery126LocalTest.java 2012-10-01 06:03:36 UTC (rev 7482)
+++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/libraries/JQuery126LocalTest.java 2012-10-01 06:11:04 UTC (rev 7483)
@@ -1,69 +0,0 @@
-/*
- * Copyright (c) 2002-2012 Gargoyle Software Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package com.gargoylesoftware.htmlunit.libraries;
-
-import static com.gargoylesoftware.htmlunit.BrowserRunner.Browser.IE8;
-
-import java.net.URL;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-
-import com.gargoylesoftware.htmlunit.BrowserRunner;
-import com.gargoylesoftware.htmlunit.BrowserRunner.NotYetImplemented;
-import com.gargoylesoftware.htmlunit.BrowserRunner.Tries;
-
-/**
- * Tests for compatibility with local loading of
- * version 1.2.6 of the <a href="http://jquery.com/">jQuery JavaScript library</a>.
- *
- * @version $Revision$
- * @author Daniel Gredler
- * @author Ahmed Ashour
- * @see JQuery126Test
- */
-@...)
-public class JQuery126LocalTest extends JQueryTestBase {
-
- /**
- * {@inheritDoc}
- */
- @Override
- protected String getExpectedPath() throws Exception {
- final String v = getVersion();
- final String resource = "libraries/jQuery/" + v + "/local." + getBrowserVersion().getNickname() + ".txt";
- final URL url = getClass().getClassLoader().getResource(resource);
- return url.toURI().getPath();
- }
-
- /**
- * {@inheritDoc}
- */
- @Override
- protected String getUrl() {
- final String v = getVersion();
- return getClass().getClassLoader().getResource("libraries/jQuery/" + v + "/test/index.html").toExternalForm();
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @NotYetImplemented({ IE8 }) // IE8 needs the expectation file
- @Tries(3)
- public void test() throws Exception {
- runTest();
- }
-}
Deleted: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/libraries/JQuery126Test.java
===================================================================
--- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/libraries/JQuery126Test.java 2012-10-01 06:03:36 UTC (rev 7482)
+++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/libraries/JQuery126Test.java 2012-10-01 06:11:04 UTC (rev 7483)
@@ -1,70 +0,0 @@
-/*
- * Copyright (c) 2002-2012 Gargoyle Software Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package com.gargoylesoftware.htmlunit.libraries;
-
-import static com.gargoylesoftware.htmlunit.BrowserRunner.Browser.IE8;
-
-import java.net.URL;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-
-import com.gargoylesoftware.htmlunit.BrowserRunner;
-import com.gargoylesoftware.htmlunit.BrowserRunner.NotYetImplemented;
-import com.gargoylesoftware.htmlunit.BrowserRunner.Tries;
-
-/**
- * Tests for compatibility with web server loading of
- * version 1.2.6 of the <a href="http://jquery.com/">jQuery JavaScript library</a>.
- *
- * @version $Revision$
- * @author Daniel Gredler
- * @author Ahmed Ashour
- * @see JQuery126LocalTest
- */
-@...)
-public class JQuery126Test extends JQueryTestBase {
-
- /**
- * {@inheritDoc}
- */
- @Override
- protected String getExpectedPath() throws Exception {
- final String v = getVersion();
- final String resource = "libraries/jQuery/" + v + "/webServer." + getBrowserVersion().getNickname() + ".txt";
- final URL url = getClass().getClassLoader().getResource(resource);
- return url.toURI().getPath();
- }
-
- /**
- * {@inheritDoc}
- */
- @Override
- protected String getUrl() {
- return "http://localhost:" + PORT + "/test/index.html";
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @NotYetImplemented({ IE8 }) // IE8 needs the expectation file
- @Tries(3)
- public void test() throws Exception {
- startWebServer("src/test/resources/libraries/jQuery/" + getVersion());
- runTest();
- }
-
-}
Deleted: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/libraries/JQuery173GitTest.java
===================================================================
--- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/libraries/JQuery173GitTest.java 2012-10-01 06:03:36 UTC (rev 7482)
+++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/libraries/JQuery173GitTest.java 2012-10-01 06:11:04 UTC (rev 7483)
@@ -1,6874 +0,0 @@
-/*
- * Copyright (c) 2002-2012 Gargoyle Software Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package com.gargoylesoftware.htmlunit.libraries;
-
-import static com.gargoylesoftware.htmlunit.BrowserRunner.Browser.FF10;
-import static com.gargoylesoftware.htmlunit.BrowserRunner.Browser.FF3_6;
-import static com.gargoylesoftware.htmlunit.BrowserRunner.Browser.IE6;
-import static com.gargoylesoftware.htmlunit.BrowserRunner.Browser.IE7;
-import static com.gargoylesoftware.htmlunit.BrowserRunner.Browser.IE8;
-import static org.junit.Assert.fail;
-
-import org.eclipse.jetty.server.Server;
-import org.junit.After;
-import org.junit.ComparisonFailure;
-import org.junit.Test;
-import org.junit.runner.RunWith;
-
-import com.gargoylesoftware.htmlunit.BrowserRunner;
-import com.gargoylesoftware.htmlunit.BrowserRunner.Alerts;
-import com.gargoylesoftware.htmlunit.BrowserRunner.NotYetImplemented;
-import com.gargoylesoftware.htmlunit.BrowserRunner.Tries;
-import com.gargoylesoftware.htmlunit.WebClient;
-import com.gargoylesoftware.htmlunit.WebServerTestCase;
-import com.gargoylesoftware.htmlunit.html.HtmlElement;
-import com.gargoylesoftware.htmlunit.html.HtmlPage;
-
-/**
- * Tests for compatibility with web server loading of
- * version 1.7.3 of the <a href="http://jquery.com/">jQuery</a> JavaScript library.
- *
- * The web application doesn't currently support PHP.
- *
- * @version $Revision$
- * @author Ahmed Ashour
- */
-@...)
-public class JQuery173GitTest extends WebServerTestCase {
-
- private static Server SERVER_;
- private static WebClient WEBCLIENT_;
-
- /**
- * Returns the jQuery version being tested.
- * @return the jQuery version being tested
- */
- protected static String getVersion() {
- return "1.7.3-git";
- }
-
- /**
- * Overridden so it doesn't check for background threads.
- *
- * {@inheritDoc}
- */
- @After
- @Override
- public void releaseResources() {
- //nothing
- }
-
- /**
- * Runs the specified test.
- * @param testNumber the test number
- * @throws Exception if an error occurs
- */
- protected void runTest(final int testNumber) throws Exception {
- final long endTime = System.currentTimeMillis() + 60 * 1000;
- try {
- final HtmlPage page = WEBCLIENT_.getPage("http://localhost:" + PORT + "/test/index.html?testNumber="
- + testNumber);
- HtmlElement element = null;
- do {
- if (element == null) {
- try {
- element = page.getHtmlElementById("qunit-test-output0");
- }
- catch (final Exception e) {
- //ignore
- }
- }
- Thread.sleep(100);
- } while (System.currentTimeMillis() < endTime && (element == null || !element.asText().contains(",")));
- String result = element.asText();
- result = result.substring(0, result.indexOf("Rerun")).trim();
- final String expected = getExpectedAlerts()[0];
- if (!expected.contains(result)) {
- fail(new ComparisonFailure("", expected, result).getMessage());
- }
- }
- catch (final Exception e) {
- e.printStackTrace();
- Throwable t = e;
- while ((t = t.getCause()) != null) {
- t.printStackTrace();
- }
- throw e;
- }
- }
-
- /**
- * This MUST be named 'aaa' so it runs at the very beginning. It initiates web client.
- * @throws Exception if an error occurs
- */
- @Test
- public void aaa_startSesrver() throws Exception {
- SERVER_ = createWebServer("src/test/resources/libraries/jQuery/" + getVersion(), null);
- WEBCLIENT_ = getWebClient();
- }
-
- /**
- * This MUST have 'zzz' so it runs at the very end. It closes the server and web client.
- * @throws Exception if an error occurs
- */
- @Test
- public void zzz_stopServer() throws Exception {
- SERVER_.stop();
- WEBCLIENT_.closeAllWindows();
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: Unit Testing Environment (0, 2, 2)")
- @Tries(3)
- public void test_1() throws Exception {
- runTest(1);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: Basic requirements (0, 7, 7)")
- @Tries(3)
- public void test_2() throws Exception {
- runTest(2);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: jQuery() (1, 30, 31)")
- @NotYetImplemented({ IE6, IE7, IE8 })
- @Tries(3)
- public void test_3() throws Exception {
- runTest(3);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: selector state (0, 31, 31)")
- @Tries(3)
- public void test_4() throws Exception {
- runTest(4);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: globalEval (0, 3, 3)")
- @Tries(3)
- public void test_5() throws Exception {
- runTest(5);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: noConflict (0, 7, 7)")
- @Tries(3)
- public void test_6() throws Exception {
- runTest(6);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: trim (0, 9, 9)")
- @NotYetImplemented({ IE6, IE7, IE8 })
- public void test_7() throws Exception {
- runTest(7);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: type (0, 23, 23)")
- @Tries(3)
- public void test_8() throws Exception {
- runTest(8);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: isPlainObject (0, 15, 15)")
- @Tries(3)
- public void test_9() throws Exception {
- runTest(9);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: isFunction (0, 19, 19)")
- @Tries(3)
- public void test_10() throws Exception {
- runTest(10);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: isNumeric (0, 36, 36)")
- @Tries(3)
- public void test_11() throws Exception {
- runTest(11);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: isXMLDoc - HTML (0, 4, 4)")
- @Tries(3)
- public void test_12() throws Exception {
- runTest(12);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: XSS via location.hash (0, 1, 1)")
- @Tries(3)
- public void test_13() throws Exception {
- runTest(13);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: isXMLDoc - XML (0, 3, 3)")
- @Tries(3)
- public void test_14() throws Exception {
- runTest(14);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: isWindow (0, 14, 14)")
- @Tries(3)
- public void test_15() throws Exception {
- runTest(15);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: jQuery('html') (0, 18, 18)")
- @Tries(3)
- public void test_16() throws Exception {
- runTest(16);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: jQuery('html', context) (0, 1, 1)")
- @Tries(3)
- public void test_17() throws Exception {
- runTest(17);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: jQuery(selector, xml).text(str) - Loaded via XML document (0, 2, 2)")
- @Tries(3)
- public void test_18() throws Exception {
- runTest(18);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: end() (0, 3, 3)")
- @Tries(3)
- public void test_19() throws Exception {
- runTest(19);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: length (0, 1, 1)")
- @Tries(3)
- public void test_20() throws Exception {
- runTest(20);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: size() (0, 1, 1)")
- @Tries(3)
- public void test_21() throws Exception {
- runTest(21);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: get() (0, 1, 1)")
- @Tries(3)
- public void test_22() throws Exception {
- runTest(22);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: toArray() (0, 1, 1)")
- @Tries(3)
- public void test_23() throws Exception {
- runTest(23);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: inArray() (0, 19, 19)")
- @Tries(3)
- public void test_24() throws Exception {
- runTest(24);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: get(Number) (0, 2, 2)")
- @Tries(3)
- public void test_25() throws Exception {
- runTest(25);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: get(-Number) (0, 2, 2)")
- @Tries(3)
- public void test_26() throws Exception {
- runTest(26);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: each(Function) (0, 1, 1)")
- @Tries(3)
- public void test_27() throws Exception {
- runTest(27);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: slice() (0, 7, 7)")
- @Tries(3)
- public void test_28() throws Exception {
- runTest(28);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: first()/last() (0, 4, 4)")
- @Tries(3)
- public void test_29() throws Exception {
- runTest(29);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: map() (0, 8, 8)")
- @Tries(3)
- public void test_30() throws Exception {
- runTest(30);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: jQuery.merge() (0, 8, 8)")
- @Tries(3)
- public void test_31() throws Exception {
- runTest(31);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: jQuery.extend(Object, Object) (0, 28, 28)")
- @Tries(3)
- public void test_32() throws Exception {
- runTest(32);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: jQuery.each(Object,Function) (0, 14, 14)")
- @Tries(3)
- public void test_33() throws Exception {
- runTest(33);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: jQuery.makeArray (0, 17, 17)")
- @Tries(3)
- public void test_34() throws Exception {
- runTest(34);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: jQuery.inArray (0, 3, 3)")
- @Tries(3)
- public void test_35() throws Exception {
- runTest(35);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: jQuery.isEmptyObject (0, 2, 2)")
- @Tries(3)
- public void test_36() throws Exception {
- runTest(36);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: jQuery.proxy (0, 7, 7)")
- @Tries(3)
- public void test_37() throws Exception {
- runTest(37);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: jQuery.parseHTML (2, 0, 2)")
- @Tries(3)
- public void test_38() throws Exception {
- runTest(38);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: jQuery.parseJSON (0, 8, 8)")
- @Tries(3)
- public void test_39() throws Exception {
- runTest(39);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: jQuery.parseXML (0, 8, 8)")
- @Tries(3)
- public void test_40() throws Exception {
- runTest(40);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: jQuery.sub() - Static Methods (0, 18, 18)")
- @Tries(3)
- public void test_41() throws Exception {
- runTest(41);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: jQuery.sub() - .fn Methods (0, 378, 378)")
- @Tries(3)
- public void test_42() throws Exception {
- runTest(42);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("core: jQuery.camelCase() (0, 7, 7)")
- @Tries(3)
- public void test_43() throws Exception {
- runTest(43);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"\" ) - no filter (0, 20, 20)")
- @Tries(3)
- public void test_44() throws Exception {
- runTest(44);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( { } ) - no filter (2, 0, 2)")
- @Tries(3)
- public void test_45() throws Exception {
- runTest(45);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"\" ) - filter (0, 20, 20)")
- @Tries(3)
- public void test_46() throws Exception {
- runTest(46);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( { } ) - filter (0, 20, 20)")
- @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
- public void test_47() throws Exception {
- runTest(47);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"once\" ) - no filter (0, 20, 20)")
- @Tries(3)
- public void test_48() throws Exception {
- runTest(48);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( { \"once\": true } ) - no filter (2, 18, 20)")
- @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
- public void test_49() throws Exception {
- runTest(49);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"once\" ) - filter (0, 20, 20)")
- @Tries(3)
- public void test_50() throws Exception {
- runTest(50);
- }
-
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( { \"once\": true } ) - filter (2, 18, 20)")
-// @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
-// public void test_51() throws Exception {
-// runTest(51);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( \"memory\" ) - no filter (0, 20, 20)")
-// @Tries(3)
-// public void test_52() throws Exception {
-// runTest(52);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( { \"memory\": true } ) - no filter (5, 15, 20)")
-// @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
-// public void test_53() throws Exception {
-// runTest(53);
-// }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"memory\" ) - filter (0, 20, 20)")
- @Tries(3)
- public void test_54() throws Exception {
- runTest(54);
- }
-
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( { \"memory\": true } ) - filter (5, 15, 20)")
-// @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
-// public void test_55() throws Exception {
-// runTest(55);
-// }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"unique\" ) - no filter (0, 20, 20)")
- @Tries(3)
- public void test_56() throws Exception {
- runTest(56);
- }
-
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( { \"unique\": true } ) - no filter (2, 18, 20)")
-// @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
-// public void test_57() throws Exception {
-// runTest(57);
-// }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"unique\" ) - filter (0, 20, 20)")
- @Tries(3)
- public void test_58() throws Exception {
- runTest(58);
- }
-
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( { \"unique\": true } ) - filter (2, 18, 20)")
-// @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
-// public void test_59() throws Exception {
-// runTest(59);
-// }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"stopOnFalse\" ) - no filter (0, 20, 20)")
- @Tries(3)
- public void test_60() throws Exception {
- runTest(60);
- }
-
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( { \"stopOnFalse\": true } ) - no filter (1, 19, 20)")
-// @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
-// public void test_61() throws Exception {
-// runTest(61);
-// }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"stopOnFalse\" ) - filter (0, 20, 20)")
- @Tries(3)
- public void test_62() throws Exception {
- runTest(62);
- }
-
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( { \"stopOnFalse\": true } ) - filter (1, 19, 20)")
-// @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
-// public void test_63() throws Exception {
-// runTest(63);
-// }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"once memory\" ) - no filter (0, 20, 20)")
- @Tries(3)
- public void test_64() throws Exception {
- runTest(64);
- }
-
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( { \"once\": true, \"memory\": true } ) - no filter (6, 14, 20)")
-// @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
-// public void test_65() throws Exception {
-// runTest(65);
-// }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"once memory\" ) - filter (0, 20, 20)")
- @Tries(3)
- public void test_66() throws Exception {
- runTest(66);
- }
-
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( { \"once\": true, \"memory\": true } ) - filter (6, 14, 20)")
-// @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
-// public void test_67() throws Exception {
-// runTest(67);
-// }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"once unique\" ) - no filter (0, 20, 20)")
- @Tries(3)
- public void test_68() throws Exception {
- runTest(68);
- }
-
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( { \"once\": true, \"unique\": true } ) - no filter (3, 17, 20)")
-// @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
-// public void test_69() throws Exception {
-// runTest(69);
-// }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"once unique\" ) - filter (0, 20, 20)")
- @Tries(3)
- public void test_70() throws Exception {
- runTest(70);
- }
-
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( { \"once\": true, \"unique\": true } ) - filter (3, 17, 20)")
-// @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
-// public void test_71() throws Exception {
-// runTest(71);
-// }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"once stopOnFalse\" ) - no filter (0, 20, 20)")
- @Tries(3)
- public void test_72() throws Exception {
- runTest(72);
- }
-
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( { \"once\": true, \"stopOnFalse\": true } ) - no filter (3, 17, 20)")
-// @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
-// public void test_73() throws Exception {
-// runTest(73);
-// }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"once stopOnFalse\" ) - filter (0, 20, 20)")
- @Tries(3)
- public void test_74() throws Exception {
- runTest(74);
- }
-
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( { \"once\": true, \"stopOnFalse\": true } ) - filter (3, 17, 20)")
-// @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
-// public void test_75() throws Exception {
-// runTest(75);
-// }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"memory unique\" ) - no filter (0, 20, 20)")
- @Tries(3)
- public void test_76() throws Exception {
- runTest(76);
- }
-
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( { \"memory\": true, \"unique\": true } ) - no filter (6, 14, 20)")
-// @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
-// public void test_77() throws Exception {
-// runTest(77);
-// }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"memory unique\" ) - filter (0, 20, 20)")
- @Tries(3)
- public void test_78() throws Exception {
- runTest(78);
- }
-
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( { \"memory\": true, \"unique\": true } ) - filter (6, 14, 20)")
-// @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
-// public void test_79() throws Exception {
-// runTest(79);
-// }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"memory stopOnFalse\" ) - no filter (0, 20, 20)")
- @Tries(3)
- public void test_80() throws Exception {
- runTest(80);
- }
-
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( { \"memory\": true, \"stopOnFalse\": true } ) - no filter (5, 15, 20)")
-// @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
-// public void test_81() throws Exception {
-// runTest(81);
-// }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"memory stopOnFalse\" ) - filter (0, 20, 20)")
- @Tries(3)
- public void test_82() throws Exception {
- runTest(82);
- }
-
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( { \"memory\": true, \"stopOnFalse\": true } ) - filter (5, 15, 20)")
-// @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
-// public void test_83() throws Exception {
-// runTest(83);
-// }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"unique stopOnFalse\" ) - no filter (0, 20, 20)")
- @Tries(3)
- public void test_84() throws Exception {
- runTest(84);
- }
-
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( { \"unique\": true, \"stopOnFalse\": true } ) - no filter (2, 18, 20)")
-// @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
-// public void test_85() throws Exception {
-// runTest(85);
-// }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks( \"unique stopOnFalse\" ) - filter (0, 20, 20)")
- @Tries(3)
- public void test_86() throws Exception {
- runTest(86);
- }
-
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( { \"unique\": true, \"stopOnFalse\": true } ) - filter (2, 18, 20)")
-// @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
-// public void test_87() throws Exception {
-// runTest(87);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("callbacks: jQuery.Callbacks( options ) - options are copied (2, 1, 3)")
-// @NotYetImplemented({ FF3_6, IE6, IE7, IE8, FF10 })
-// public void test_88() throws Exception {
-// runTest(88);
-// }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks.fireWith - arguments are copied (1, 0, 1)")
- @Tries(3)
- public void test_89() throws Exception {
- runTest(89);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("callbacks: jQuery.Callbacks.remove - should remove all instances (0, 1, 1)")
- @Tries(3)
- public void test_90() throws Exception {
- runTest(90);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("deferred: jQuery.Deferred (1, 20, 21)")
- @Tries(3)
- public void test_91() throws Exception {
- runTest(91);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("deferred: jQuery.Deferred - new operator (1, 20, 21)")
- @Tries(3)
- public void test_92() throws Exception {
- runTest(92);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("deferred: jQuery.Deferred - chainability (0, 10, 10)")
- @Tries(3)
- public void test_93() throws Exception {
- runTest(93);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("deferred: jQuery.Deferred.then - filtering (done) (1, 3, 4)")
- @Tries(3)
- public void test_94() throws Exception {
- runTest(94);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("deferred: jQuery.Deferred.then - filtering (fail) (1, 3, 4)")
- @Tries(3)
- public void test_95() throws Exception {
- runTest(95);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("deferred: jQuery.Deferred.then - filtering (progress) (1, 2, 3)")
- @Tries(3)
- public void test_96() throws Exception {
- runTest(96);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("deferred: jQuery.Deferred.then - deferred (done) (1, 2, 3)")
- @Tries(3)
- public void test_97() throws Exception {
- runTest(97);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("deferred: jQuery.Deferred.then - deferred (fail) (1, 2, 3)")
- @Tries(3)
- public void test_98() throws Exception {
- runTest(98);
- }
-
- /**
- * @throws Exception if an error occurs
- */
- @Test
- @Alerts("deferred: jQuery.Deferred.then - deferred (progress) (1, 2, 3)")
- @Tries(3)
- public void test_99() throws Exception {
- runTest(99);
- }
-
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("deferred: jQuery.Deferred.then - context (3, 1, 4)")
-// @NotYetImplemented({ FF10 })
-// public void test_100() throws Exception {
-// runTest(100);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("deferred: jQuery.when (10, 24, 34)")
-// @NotYetImplemented({ FF10 })
-// public void test_101() throws Exception {
-// runTest(101);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("deferred: jQuery.when - joined (45, 74, 119)")
-// @NotYetImplemented({ FF10 })
-// public void test_102() throws Exception {
-// runTest(102);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("support: boxModel (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_103() throws Exception {
-// runTest(103);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("support: body background is not lost if set prior to loading jQuery (#9238) (0, 2, 2)")
-// @NotYetImplemented({ IE8, FF10 })
-// public void test_104() throws Exception {
-// runTest(104);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("support: A background on the testElement does not cause IE8 to crash (#9823) (0, 1, 1)")
-// @NotYetImplemented({ IE8, FF10 })
-// public void test_105() throws Exception {
-// runTest(105);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("support: Verify that the support tests resolve as expected per browser (0, 30, 30)")
-// @NotYetImplemented({ FF3_6, IE8, FF10 })
-// public void test_106() throws Exception {
-// runTest(106);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("data: expando (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_107() throws Exception {
-// runTest(107);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "data: jQuery.data (0, 124, 124)", IE8 = "data: jQuery.data (2, 122, 124)")
-// @NotYetImplemented({ IE8, FF10 })
-// public void test_108() throws Exception {
-// runTest(108);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("data: jQuery.acceptData (0, 7, 7)")
-// @NotYetImplemented({ FF10 })
-// public void test_109() throws Exception {
-// runTest(109);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("data: .data() (0, 5, 5)")
-// @NotYetImplemented({ FF10 })
-// public void test_110() throws Exception {
-// runTest(110);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("data: .data(String) and .data(String, Object) (0, 29, 29)")
-// @NotYetImplemented({ FF10 })
-// public void test_111() throws Exception {
-// runTest(111);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("data: data-* attributes (0, 38, 38)")
-// @NotYetImplemented({ FF10 })
-// public void test_112() throws Exception {
-// runTest(112);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("data: .data(Object) (0, 4, 4)")
-// @NotYetImplemented({ FF10 })
-// public void test_113() throws Exception {
-// runTest(113);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("data: jQuery.removeData (0, 10, 10)")
-// @NotYetImplemented({ FF10 })
-// public void test_114() throws Exception {
-// runTest(114);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("data: .removeData() (0, 6, 6)")
-// @NotYetImplemented({ FF10 })
-// public void test_115() throws Exception {
-// runTest(115);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("data: JSON serialization (#8108) (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_116() throws Exception {
-// runTest(116);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("data: jQuery.data should follow html5 specification regarding camel casing (0, 10, 10)")
-// @NotYetImplemented({ FF10 })
-// public void test_117() throws Exception {
-// runTest(117);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("data: jQuery.data should not miss data with preset hyphenated property names (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_118() throws Exception {
-// runTest(118);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("data: jQuery.data supports interoperable hyphenate"
-// + "d/camelCase get/set of properties with arbitrary non-null|NaN|undefined values (0, 24, 24)")
-// @NotYetImplemented({ FF10 })
-// public void test_119() throws Exception {
-// runTest(119);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("data: jQuery.data supports interoperable removal of hyphenated/camelCase properties (0, 27, 27)")
-// @NotYetImplemented({ FF10 })
-// public void test_120() throws Exception {
-// runTest(120);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("data: Triggering the removeData should not throw exceptions. (#10080) (0, 1, 1)")
-// @NotYetImplemented({ IE8, FF10 })
-// public void test_121() throws Exception {
-// runTest(121);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("data: Only check element attributes once when calling .data() - #8909 (0, 2, 2)")
-// @NotYetImplemented({ IE8, FF10 })
-// public void test_122() throws Exception {
-// runTest(122);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("queue: queue() with other types (0, 12, 12)")
-// @NotYetImplemented({ FF10 })
-// public void test_123() throws Exception {
-// runTest(123);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("queue: queue(name) passes in the next item in the queue as a parameter (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_124() throws Exception {
-// runTest(124);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("queue: queue() passes in the next item in the queue as a parameter to fx queues (0, 3, 3)")
-// @NotYetImplemented({ FF10 })
-// public void test_125() throws Exception {
-// runTest(125);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("queue: callbacks keep their place in the queue (0, 5, 5)")
-// @NotYetImplemented({ FF10 })
-// public void test_126() throws Exception {
-// runTest(126);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("queue: delay() (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_127() throws Exception {
-// runTest(127);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("queue: clearQueue(name) clears the queue (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_128() throws Exception {
-// runTest(128);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("queue: clearQueue() clears the fx queue (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_129() throws Exception {
-// runTest(129);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("queue: fn.promise() - called when fx queue is empty (0, 3, 3)")
-// @NotYetImplemented({ FF10 })
-// public void test_130() throws Exception {
-// runTest(130);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "queue: fn.promise( \"queue\" ) - called "
-// + "whenever last queue function is dequeued (2, 3, 5)",
-// IE8 = "queue: fn.promise( \"queue\" ) - called "
-// + "whenever last queue function is dequeued (0, 5, 5)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_131() throws Exception {
-// runTest(131);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("queue: .promise(obj) (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_132() throws Exception {
-// runTest(132);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("queue: delay() can be stopped (0, 3, 3)")
-// @NotYetImplemented({ FF10 })
-// public void test_133() throws Exception {
-// runTest(133);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("queue: queue stop hooks (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_134() throws Exception {
-// runTest(134);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: jQuery.propFix integrity test (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_135() throws Exception {
-// runTest(135);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: attr(String) (0, 46, 46)")
-// @NotYetImplemented({ IE8, FF10 })
-// public void test_136() throws Exception {
-// runTest(136);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: attr(String) in XML Files (0, 3, 3)")
-// @NotYetImplemented({ FF10 })
-// public void test_137() throws Exception {
-// runTest(137);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: attr(String, Function) (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_138() throws Exception {
-// runTest(138);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: attr(Hash) (0, 3, 3)")
-// @NotYetImplemented({ FF10 })
-// public void test_139() throws Exception {
-// runTest(139);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: attr(String, Object) (0, 81, 81)")
-// @NotYetImplemented({ FF10 })
-// public void test_140() throws Exception {
-// runTest(140);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: attr(jquery_method) (0, 9, 9)")
-// @NotYetImplemented({ IE8, FF10 })
-// public void test_141() throws Exception {
-// runTest(141);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: attr(String, Object) - Loaded via XML document (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_142() throws Exception {
-// runTest(142);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: attr('tabindex') (1, 7, 8)")
-// @NotYetImplemented({ FF10 })
-// public void test_143() throws Exception {
-// runTest(143);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: attr('tabindex', value) (0, 9, 9)")
-// @NotYetImplemented({ FF10 })
-// public void test_144() throws Exception {
-// runTest(144);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: removeAttr(String) (0, 12, 12)")
-// @NotYetImplemented({ IE8, FF10 })
-// public void test_145() throws Exception {
-// runTest(145);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: removeAttr(String) in XML (2, 5, 7)")
-// @NotYetImplemented({ FF10 })
-// public void test_146() throws Exception {
-// runTest(146);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: removeAttr(Multi String, variable space width) (0, 8, 8)")
-// @NotYetImplemented({ FF10 })
-// public void test_147() throws Exception {
-// runTest(147);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: prop(String, Object) (0, 31, 31)")
-// @NotYetImplemented({ FF10 })
-// public void test_148() throws Exception {
-// runTest(148);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: prop('tabindex') (0, 8, 8)")
-// @NotYetImplemented({ FF10 })
-// public void test_149() throws Exception {
-// runTest(149);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: prop('tabindex', value) (0, 9, 9)")
-// @NotYetImplemented({ FF10 })
-// public void test_150() throws Exception {
-// runTest(150);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: removeProp(String) (0, 6, 6)")
-// @NotYetImplemented({ FF10 })
-// public void test_151() throws Exception {
-// runTest(151);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: val() (0, 26, 26)")
-// @NotYetImplemented({ FF3_6, IE8, FF10 })
-// public void test_152() throws Exception {
-// runTest(152);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: val(String/Number) (0, 8, 8)")
-// @NotYetImplemented({ FF10 })
-// public void test_153() throws Exception {
-// runTest(153);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: val(Function) (0, 8, 8)")
-// @NotYetImplemented({ FF10 })
-// public void test_154() throws Exception {
-// runTest(154);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: val(Array of Numbers) (Bug #7123) (0, 4, 4)")
-// @NotYetImplemented({ FF10 })
-// public void test_155() throws Exception {
-// runTest(155);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: val(Function) with incoming value (0, 10, 10)")
-// @NotYetImplemented({ FF10 })
-// public void test_156() throws Exception {
-// runTest(156);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: val(select) after form.reset() (Bug #2551) (0, 3, 3)")
-// @NotYetImplemented({ FF3_6, IE8, FF10 })
-// public void test_157() throws Exception {
-// runTest(157);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: addClass(String) (0, 9, 9)")
-// @NotYetImplemented({ FF10 })
-// public void test_158() throws Exception {
-// runTest(158);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: addClass(Function) (0, 9, 9)")
-// @NotYetImplemented({ FF10 })
-// public void test_159() throws Exception {
-// runTest(159);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: addClass(Function) with incoming value (0, 48, 48)")
-// @NotYetImplemented({ FF10 })
-// public void test_160() throws Exception {
-// runTest(160);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: removeClass(String) - simple (0, 7, 7)")
-// @NotYetImplemented({ FF10 })
-// public void test_161() throws Exception {
-// runTest(161);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: removeClass(Function) - simple (0, 7, 7)")
-// @NotYetImplemented({ FF10 })
-// public void test_162() throws Exception {
-// runTest(162);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: removeClass(Function) with incoming value (0, 48, 48)")
-// @NotYetImplemented({ FF10 })
-// public void test_163() throws Exception {
-// runTest(163);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: removeClass() removes duplicates (1, 0, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_164() throws Exception {
-// runTest(164);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: toggleClass(String|boolean|undefined[, boolean]) (0, 17, 17)")
-// @NotYetImplemented({ FF10 })
-// public void test_165() throws Exception {
-// runTest(165);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: toggleClass(Function[, boolean]) (0, 17, 17)")
-// @NotYetImplemented({ FF10 })
-// public void test_166() throws Exception {
-// runTest(166);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: toggleClass(Fucntion[, boolean]) with incoming value (0, 14, 14)")
-// @NotYetImplemented({ FF10 })
-// public void test_167() throws Exception {
-// runTest(167);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: addClass, removeClass, hasClass (0, 17, 17)")
-// @NotYetImplemented({ FF10 })
-// public void test_168() throws Exception {
-// runTest(168);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: contents().hasClass() returns correct values (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_169() throws Exception {
-// runTest(169);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("attributes: coords returns correct values in IE6/see #10828 (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_170() throws Exception {
-// runTest(170);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: null or undefined handler (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_171() throws Exception {
-// runTest(171);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: bind(),live(),delegate() with non-null,defined data (0, 3, 3)")
-// @NotYetImplemented({ FF10 })
-// public void test_172() throws Exception {
-// runTest(172);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: Handler changes and .trigger() order (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_173() throws Exception {
-// runTest(173);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: bind(), with data (0, 4, 4)")
-// @NotYetImplemented({ FF10 })
-// public void test_174() throws Exception {
-// runTest(174);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: click(), with data (0, 3, 3)")
-// @NotYetImplemented({ FF10 })
-// public void test_175() throws Exception {
-// runTest(175);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: bind(), with data, trigger with data (0, 4, 4)")
-// @NotYetImplemented({ FF10 })
-// public void test_176() throws Exception {
-// runTest(176);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: bind(), multiple events at once (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_177() throws Exception {
-// runTest(177);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: bind(), five events at once (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_178() throws Exception {
-// runTest(178);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: bind(), multiple events at once and namespaces (0, 7, 7)")
-// @NotYetImplemented({ FF10 })
-// public void test_179() throws Exception {
-// runTest(179);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: bind(), namespace with special add (0, 27, 27)")
-// @NotYetImplemented({ FF10 })
-// public void test_180() throws Exception {
-// runTest(180);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: bind(), no data (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_181() throws Exception {
-// runTest(181);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: bind/one/unbind(Object) (0, 6, 6)")
-// @NotYetImplemented({ FF10 })
-// public void test_182() throws Exception {
-// runTest(182);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: live/die(Object), delegate/undelegate(String, Object) (0, 6, 6)")
-// @NotYetImplemented({ FF10 })
-// public void test_183() throws Exception {
-// runTest(183);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: live/delegate immediate propagation (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_184() throws Exception {
-// runTest(184);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: bind/delegate bubbling, isDefaultPrevented (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_185() throws Exception {
-// runTest(185);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: bind(), iframes (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_186() throws Exception {
-// runTest(186);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: bind(), trigger change on select (0, 5, 5)")
-// @NotYetImplemented({ FF10 })
-// public void test_187() throws Exception {
-// runTest(187);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: bind(), namespaced events, cloned events (0, 18, 18)")
-// @NotYetImplemented({ FF10 })
-// public void test_188() throws Exception {
-// runTest(188);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: bind(), multi-namespaced events (0, 6, 6)")
-// @NotYetImplemented({ FF10 })
-// public void test_189() throws Exception {
-// runTest(189);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: bind(), with same function (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_190() throws Exception {
-// runTest(190);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: bind(), make sure order is maintained (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_191() throws Exception {
-// runTest(191);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: bind(), with different this object (0, 4, 4)")
-// @NotYetImplemented({ FF10 })
-// public void test_192() throws Exception {
-// runTest(192);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: bind(name, false), unbind(name, false) (0, 3, 3)")
-// @NotYetImplemented({ FF10 })
-// public void test_193() throws Exception {
-// runTest(193);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: live(name, false), die(name, false) (0, 3, 3)")
-// @NotYetImplemented({ FF10 })
-// public void test_194() throws Exception {
-// runTest(194);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: delegate(selector, name, false), undelegate(selector, name, false) (0, 3, 3)")
-// @NotYetImplemented({ FF10 })
-// public void test_195() throws Exception {
-// runTest(195);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: bind()/trigger()/unbind() on plain object (0, 7, 7)")
-// @NotYetImplemented({ FF10 })
-// public void test_196() throws Exception {
-// runTest(196);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: unbind(type) (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_197() throws Exception {
-// runTest(197);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: unbind(eventObject) (0, 4, 4)")
-// @NotYetImplemented({ FF10 })
-// public void test_198() throws Exception {
-// runTest(198);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: hover() and hover pseudo-event (0, 3, 3)")
-// @NotYetImplemented({ FF10 })
-// public void test_199() throws Exception {
-// runTest(199);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: mouseover triggers mouseenter (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_200() throws Exception {
-// runTest(200);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: withinElement implemented with jQuery.contains() (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_201() throws Exception {
-// runTest(201);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: mouseenter, mouseleave don't catch exceptions (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_202() throws Exception {
-// runTest(202);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: trigger() shortcuts (0, 6, 6)")
-// @NotYetImplemented({ FF10 })
-// public void test_203() throws Exception {
-// runTest(203);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: trigger() bubbling (1, 17, 18)")
-// @NotYetImplemented({ FF3_6, IE8, FF10 })
-// public void test_204() throws Exception {
-// runTest(204);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: trigger(type, [data], [fn]) (0, 16, 16)")
-// @NotYetImplemented({ FF10 })
-// public void test_205() throws Exception {
-// runTest(205);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "event: submit event bubbles on copied fo"
-// + "rms (#11649) (0, 3, 3)",
-// IE8 = "event: submit event bubbles on copied fo"
-// + "rms (#11649) (1, 2, 3)")
-// @NotYetImplemented({ IE8, FF10 })
-// public void test_206() throws Exception {
-// runTest(206);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: change event bubbles on copied forms (#11796) (0, 3, 3)")
-// @NotYetImplemented({ IE8, FF10 })
-// public void test_207() throws Exception {
-// runTest(207);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: trigger(eventObject, [data], [fn]) (0, 28, 28)")
-// @NotYetImplemented({ FF10 })
-// public void test_208() throws Exception {
-// runTest(208);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: .trigger() bubbling on disconnected elements (#10489) (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_209() throws Exception {
-// runTest(209);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: .trigger() doesn't bubble load event (#10717) (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_210() throws Exception {
-// runTest(210);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: Delegated events in SVG (#10791) (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_211() throws Exception {
-// runTest(211);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: Delegated events in forms (#10844; #11145; #8165; #xxxxx) (1, 4, 5)")
-// @NotYetImplemented({ FF10 })
-// public void test_212() throws Exception {
-// runTest(212);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: Submit event can be stopped (#11049) (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_213() throws Exception {
-// runTest(213);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: on(beforeunload) creates/deletes window pro"
-// + "perty instead of adding/removing event listener (1, 2, 3)")
-// @NotYetImplemented({ FF10 })
-// public void test_214() throws Exception {
-// runTest(214);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: jQuery.Event( type, props ) (0, 5, 5)")
-// @NotYetImplemented({ FF10 })
-// public void test_215() throws Exception {
-// runTest(215);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: jQuery.Event.currentTarget (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_216() throws Exception {
-// runTest(216);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: toggle(Function, Function, ...) (0, 16, 16)")
-// @NotYetImplemented({ FF10 })
-// public void test_217() throws Exception {
-// runTest(217);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: .live()/.die() (0, 66, 66)")
-// @NotYetImplemented({ FF10 })
-// public void test_218() throws Exception {
-// runTest(218);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: die all bound events (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_219() throws Exception {
-// runTest(219);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: live with multiple events (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_220() throws Exception {
-// runTest(220);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: live with namespaces (0, 15, 15)")
-// @NotYetImplemented({ FF10 })
-// public void test_221() throws Exception {
-// runTest(221);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: live with change (0, 8, 8)")
-// @NotYetImplemented({ FF10 })
-// public void test_222() throws Exception {
-// runTest(222);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: live with submit (0, 7, 7)")
-// @NotYetImplemented({ FF10 })
-// public void test_223() throws Exception {
-// runTest(223);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: live with special events (0, 13, 13)")
-// @NotYetImplemented({ FF10 })
-// public void test_224() throws Exception {
-// runTest(224);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: .delegate()/.undelegate() (0, 65, 65)")
-// @NotYetImplemented({ FF10 })
-// public void test_225() throws Exception {
-// runTest(225);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: jQuery.off using dispatched jQuery.Event (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_226() throws Exception {
-// runTest(226);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: delegated event with delegateTarget-relative selector (#) (1, 0, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_227() throws Exception {
-// runTest(227);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: stopPropagation() stops directly-bound events on delegated target (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_228() throws Exception {
-// runTest(228);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: undelegate all bound events (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_229() throws Exception {
-// runTest(229);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: delegate with multiple events (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_230() throws Exception {
-// runTest(230);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: delegate with change (0, 8, 8)")
-// @NotYetImplemented({ FF10 })
-// public void test_231() throws Exception {
-// runTest(231);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: delegate with submit (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_232() throws Exception {
-// runTest(232);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: undelegate() with only namespaces (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_233() throws Exception {
-// runTest(233);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: Non DOM element events (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_234() throws Exception {
-// runTest(234);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: inline handler returning false stops default (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_235() throws Exception {
-// runTest(235);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: window resize (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_236() throws Exception {
-// runTest(236);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: focusin bubbles (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_237() throws Exception {
-// runTest(237);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: custom events with colons (#3533, #8272) (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_238() throws Exception {
-// runTest(238);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: .on and .off (0, 9, 9)")
-// @NotYetImplemented({ FF10 })
-// public void test_239() throws Exception {
-// runTest(239);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: special bind/delegate name mapping (0, 7, 7)")
-// @NotYetImplemented({ FF10 })
-// public void test_240() throws Exception {
-// runTest(240);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: .on and .off, selective mixed removal (#10705) (0, 7, 7)")
-// @NotYetImplemented({ FF10 })
-// public void test_241() throws Exception {
-// runTest(241);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: .on( event-map, null-selector, data ) #11130 (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_242() throws Exception {
-// runTest(242);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: clone() delegated events (#11076) (0, 3, 3)")
-// @NotYetImplemented({ FF10 })
-// public void test_243() throws Exception {
-// runTest(243);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: fixHooks extensions (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_244() throws Exception {
-// runTest(244);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts("event: jQuery.ready promise (1, 0, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_245() throws Exception {
-// runTest(245);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "event: jQuery.ready synchronous load wit"
-// + "h long loading iframe (0, 1, 1)",
-// IE8 = "event: jQuery.ready synchronous load wit"
-// + "h long loading subresources (0, 1, 1)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_246() throws Exception {
-// runTest(246);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "event: jQuery.ready asynchronous load wi"
-// + "th long loading iframe (0, 1, 1)",
-// IE8 = "event: jQuery.isReady (0, 2, 2)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_247() throws Exception {
-// runTest(247);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "event: jQuery.ready synchronous load wit"
-// + "h long loading subresources (0, 1, 1)",
-// IE8 = "event: jQuery ready (0, 10, 10)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_248() throws Exception {
-// runTest(248);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "event: jQuery.isReady (0, 2, 2)", IE8 = "event: trigger click on checkbox, fires "
-// + "change event (1, 0, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_249() throws Exception {
-// runTest(249);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "event: jQuery ready (0, 10, 10)", IE8 = "selector: element (2, 1, 3)")
-// @NotYetImplemented({ IE8, FF10 })
-// public void test_250() throws Exception {
-// runTest(250);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "event: trigger click on checkbox, fires "
-// + "change event (0, 1, 1)",
-// IE8 = "selector: XML Document Selectors (0, 9, "
-// + "9)")
-// @NotYetImplemented({ IE8, FF10 })
-// public void test_251() throws Exception {
-// runTest(251);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector: element (2, 1, 3)", IE8 = "selector: broken (3, 19, 22)")
-// @NotYetImplemented({ FF3_6, IE8, FF10 })
-// public void test_252() throws Exception {
-// runTest(252);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector: XML Document Selectors (0, 9, "
-// + "9)",
-// IE8 = "selector: id (1, 29, 30)")
-// @NotYetImplemented({ FF3_6, IE8, FF10 })
-// public void test_253() throws Exception {
-// runTest(253);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector: broken (3, 19, 22)", IE8 = "selector: class (0, 24, 24)")
-// @NotYetImplemented({ FF3_6, IE8, FF10 })
-// public void test_254() throws Exception {
-// runTest(254);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector: id (1, 29, 30)", IE8 = "selector: name (0, 15, 15)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_255() throws Exception {
-// runTest(255);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector: class (0, 24, 24)", IE8 = "selector: multiple (0, 6, 6)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_256() throws Exception {
-// runTest(256);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector: name (0, 15, 15)", IE8 = "selector: child and adjacent (1, 38, 39)")
-// @NotYetImplemented({ IE8, FF10 })
-// public void test_257() throws Exception {
-// runTest(257);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector: multiple (0, 6, 6)", IE8 = "selector: attributes (3, 45, 48)")
-// @NotYetImplemented({ IE8, FF10 })
-// public void test_258() throws Exception {
-// runTest(258);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector: child and adjacent (1, 38, 39)", IE8 = "selector: pseudo - child (2, 18, 20)")
-// @NotYetImplemented({ FF3_6, IE8, FF10 })
-// public void test_259() throws Exception {
-// runTest(259);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector: attributes (0, 54, 54)", IE8 = "selector: pseudo - misc (2, 1, 3)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_260() throws Exception {
-// runTest(260);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector: pseudo - child (2, 18, 20)", IE8 = "selector: pseudo - :not (0, 26, 26)")
-// @NotYetImplemented({ FF3_6, IE8, FF10 })
-// public void test_261() throws Exception {
-// runTest(261);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector: pseudo - misc (2, 1, 3)", IE8 = "selector: pseudo - position (2, 1, 3)")
-// @NotYetImplemented({ FF10 })
-// public void test_262() throws Exception {
-// runTest(262);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector: pseudo - :not (0, 26, 26)", IE8 = "selector: pseudo - form (2, 8, 10)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_263() throws Exception {
-// runTest(263);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector: pseudo - position (2, 1, 3)", IE8 = "selector: Sizzle.contains (2, 5, 7)")
-// @NotYetImplemented({ FF10 })
-// public void test_264() throws Exception {
-// runTest(264);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector: pseudo - form (1, 9, 10)", IE8 = "selector - jQuery only: element - jQuery"
-// + " only (0, 7, 7)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_265() throws Exception {
-// runTest(265);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector: Sizzle.contains (0, 15, 15)", IE8 = "selector - jQuery only: class - jQuery o"
-// + "nly (0, 4, 4)")
-// @NotYetImplemented({ FF10 })
-// public void test_266() throws Exception {
-// runTest(266);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector - jQuery only: element - jQuery"
-// + " only (0, 7, 7)",
-// IE8 = "selector - jQuery only: attributes - jQu"
-// + "ery only (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_267() throws Exception {
-// runTest(267);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector - jQuery only: class - jQuery o"
-// + "nly (0, 4, 4)",
-// IE8 = "selector - jQuery only: pseudo - visibil"
-// + "ity (0, 9, 9)")
-// @NotYetImplemented({ FF10 })
-// public void test_268() throws Exception {
-// runTest(268);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector - jQuery only: attributes - jQu"
-// + "ery only (0, 1, 1)",
-// IE8 = "selector - jQuery only: disconnected nod"
-// + "es (0, 4, 4)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_269() throws Exception {
-// runTest(269);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector - jQuery only: pseudo - visibil"
-// + "ity (0, 9, 9)",
-// IE8 = "selector - jQuery only: attributes - jQu"
-// + "ery.attr (1, 34, 35)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_270() throws Exception {
-// runTest(270);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector - jQuery only: disconnected nod"
-// + "es (0, 4, 4)",
-// IE8 = "selector - jQuery only: Sizzle cache col"
-// + "lides with multiple Sizzles on a page (0, 3, 3)")
-// @NotYetImplemented({ FF10 })
-// public void test_271() throws Exception {
-// runTest(271);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector - jQuery only: attributes - jQu"
-// + "ery.attr (0, 35, 35)",
-// IE8 = "traversing: find(String) (0, 5, 5)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_272() throws Exception {
-// runTest(272);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "selector - jQuery only: Sizzle cache col"
-// + "lides with multiple Sizzles on a page (0, 3, 3)",
-// IE8 = "traversing: find(node|jQuery object) (0,"
-// + " 11, 11)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_273() throws Exception {
-// runTest(273);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: find(String) (0, 5, 5)", IE8 = "traversing: is(String|undefined) (0, 30,"
-// + " 30)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_274() throws Exception {
-// runTest(274);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: find(node|jQuery object) (0,"
-// + " 11, 11)",
-// IE8 = "traversing: is(jQuery) (0, 21, 21)")
-// @NotYetImplemented({ FF10 })
-// public void test_275() throws Exception {
-// runTest(275);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: is(String|undefined) (0, 30,"
-// + " 30)",
-// IE8 = "traversing: is() with positional selecto"
-// + "rs (0, 23, 23)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_276() throws Exception {
-// runTest(276);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: is(jQuery) (0, 21, 21)", IE8 = "traversing: index() (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_277() throws Exception {
-// runTest(277);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: is() with positional selecto"
-// + "rs (0, 23, 23)",
-// IE8 = "traversing: index(Object|String|undefine"
-// + "d) (0, 16, 16)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_278() throws Exception {
-// runTest(278);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: index() (0, 2, 2)", IE8 = "traversing: filter(Selector|undefined) ("
-// + "0, 9, 9)")
-// @NotYetImplemented({ FF10 })
-// public void test_279() throws Exception {
-// runTest(279);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: index(Object|String|undefine"
-// + "d) (0, 16, 16)",
-// IE8 = "traversing: filter(Function) (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_280() throws Exception {
-// runTest(280);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: filter(Selector|undefined) ("
-// + "0, 9, 9)",
-// IE8 = "traversing: filter(Element) (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_281() throws Exception {
-// runTest(281);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: filter(Function) (0, 2, 2)", IE8 = "traversing: filter(Array) (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_282() throws Exception {
-// runTest(282);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: filter(Element) (0, 1, 1)", IE8 = "traversing: filter(jQuery) (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_283() throws Exception {
-// runTest(283);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: filter(Array) (0, 1, 1)", IE8 = "traversing: filter() with positional sel"
-// + "ectors (0, 19, 19)")
-// @NotYetImplemented({ FF10 })
-// public void test_284() throws Exception {
-// runTest(284);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: filter(jQuery) (0, 1, 1)", IE8 = "traversing: closest() (0, 13, 13)")
-// @NotYetImplemented({ FF10 })
-// public void test_285() throws Exception {
-// runTest(285);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: filter() with positional sel"
-// + "ectors (0, 19, 19)",
-// IE8 = "traversing: closest(jQuery) (0, 8, 8)")
-// @NotYetImplemented({ FF10 })
-// public void test_286() throws Exception {
-// runTest(286);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: closest() (0, 13, 13)", IE8 = "traversing: not(Selector|undefined) (0, "
-// + "11, 11)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_287() throws Exception {
-// runTest(287);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: closest(jQuery) (0, 8, 8)", IE8 = "traversing: not(Element) (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_288() throws Exception {
-// runTest(288);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: not(Selector|undefined) (0, "
-// + "11, 11)",
-// IE8 = "traversing: not(Function) (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_289() throws Exception {
-// runTest(289);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: not(Element) (0, 1, 1)", IE8 = "traversing: not(Array) (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_290() throws Exception {
-// runTest(290);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: not(Function) (0, 1, 1)", IE8 = "traversing: not(jQuery) (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_291() throws Exception {
-// runTest(291);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: not(Array) (0, 2, 2)", IE8 = "traversing: has(Element) (0, 3, 3)")
-// @NotYetImplemented({ FF10 })
-// public void test_292() throws Exception {
-// runTest(292);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: not(jQuery) (0, 1, 1)", IE8 = "traversing: has(Selector) (1, 3, 4)")
-// @NotYetImplemented({ FF10 })
-// public void test_293() throws Exception {
-// runTest(293);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: has(Element) (0, 3, 3)", IE8 = "traversing: has(Arrayish) (0, 4, 4)")
-// @NotYetImplemented({ FF10 })
-// public void test_294() throws Exception {
-// runTest(294);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: has(Selector) (1, 3, 4)", IE8 = "traversing: addBack() (2, 0, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_295() throws Exception {
-// runTest(295);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: has(Arrayish) (0, 4, 4)", IE8 = "traversing: siblings([String]) (0, 7, 7)")
-// @NotYetImplemented({ FF10 })
-// public void test_296() throws Exception {
-// runTest(296);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: addBack() (2, 0, 2)", IE8 = "traversing: children([String]) (0, 3, 3)")
-// @NotYetImplemented({ FF10 })
-// public void test_297() throws Exception {
-// runTest(297);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: siblings([String]) (0, 7, 7)", IE8 = "traversing: parent([String]) (0, 5, 5)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_298() throws Exception {
-// runTest(298);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: children([String]) (0, 3, 3)", IE8 = "traversing: parents([String]) (0, 5, 5)")
-// @NotYetImplemented({ FF10 })
-// public void test_299() throws Exception {
-// runTest(299);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: parent([String]) (0, 5, 5)", IE8 = "traversing: parentsUntil([String]) (0, 9"
-// + ", 9)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_300() throws Exception {
-// runTest(300);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: parents([String]) (0, 5, 5)", IE8 = "traversing: next([String]) (0, 5, 5)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_301() throws Exception {
-// runTest(301);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: parentsUntil([String]) (0, 9"
-// + ", 9)",
-// IE8 = "traversing: prev([String]) (0, 4, 4)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_302() throws Exception {
-// runTest(302);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: next([String]) (0, 5, 5)", IE8 = "traversing: nextAll([String]) (0, 4, 4)")
-// @NotYetImplemented({ FF10 })
-// public void test_303() throws Exception {
-// runTest(303);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: prev([String]) (0, 4, 4)", IE8 = "traversing: prevAll([String]) (0, 4, 4)")
-// @NotYetImplemented({ FF10 })
-// public void test_304() throws Exception {
-// runTest(304);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: nextAll([String]) (0, 4, 4)", IE8 = "traversing: nextUntil([String]) (0, 11, "
-// + "11)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_305() throws Exception {
-// runTest(305);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: prevAll([String]) (0, 4, 4)", IE8 = "traversing: prevUntil([String]) (0, 10, "
-// + "10)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_306() throws Exception {
-// runTest(306);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: nextUntil([String]) (0, 11, "
-// + "11)",
-// IE8 = "traversing: contents() (0, 12, 12)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_307() throws Exception {
-// runTest(307);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: prevUntil([String]) (0, 10, "
-// + "10)",
-// IE8 = "traversing: add(String|Element|Array|und"
-// + "efined) (0, 16, 16)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_308() throws Exception {
-// runTest(308);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: contents() (0, 12, 12)", IE8 = "traversing: add(String, Context) (0, 6, "
-// + "6)")
-// @NotYetImplemented({ FF10 })
-// public void test_309() throws Exception {
-// runTest(309);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: add(String|Element|Array|und"
-// + "efined) (0, 16, 16)",
-// IE8 = "traversing: eq('-1') #10616 (0, 3, 3)")
-// @NotYetImplemented({ FF10 })
-// public void test_310() throws Exception {
-// runTest(310);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: add(String, Context) (0, 6, "
-// + "6)",
-// IE8 = "manipulation: text() (1, 4, 5)")
-// @NotYetImplemented({ FF10 })
-// public void test_311() throws Exception {
-// runTest(311);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "traversing: eq('-1') #10616 (0, 3, 3)", IE8 = "manipulation: text(undefined) (0, 1, 1)")
-// @NotYetImplemented({ FF10 })
-// public void test_312() throws Exception {
-// runTest(312);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "manipulation: text() (0, 5, 5)", IE8 = "manipulation: text(String) (0, 4, 4)")
-// @NotYetImplemented({ FF10 })
-// public void test_313() throws Exception {
-// runTest(313);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "manipulation: text(undefined) (0, 1, 1)", IE8 = "manipulation: text(Function) (0, 4, 4)")
-// @NotYetImplemented({ FF10 })
-// public void test_314() throws Exception {
-// runTest(314);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "manipulation: text(String) (0, 4, 4)", IE8 = "manipulation: text(Function) with incomi"
-// + "ng value (0, 2, 2)")
-// @NotYetImplemented({ FF10 })
-// public void test_315() throws Exception {
-// runTest(315);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "manipulation: text(Function) (0, 4, 4)", IE8 = "manipulation: wrap(String|Element) (0, 1"
-// + "9, 19)")
-// @NotYetImplemented({ FF10 })
-// public void test_316() throws Exception {
-// runTest(316);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "manipulation: text(Function) with incomi"
-// + "ng value (0, 2, 2)",
-// IE8 = "manipulation: wrap(Function) (0, 19, 19)")
-// @NotYetImplemented({ FF10 })
-// public void test_317() throws Exception {
-// runTest(317);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "manipulation: wrap(String|Element) (0, 1"
-// + "9, 19)",
-// IE8 = "manipulation: wrap(Function) with index "
-// + "(#10177) (0, 6, 6)")
-// @NotYetImplemented({ FF10 })
-// public void test_318() throws Exception {
-// runTest(318);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "manipulation: wrap(Function) (0, 19, 19)", IE8 = "manipulation: wrap(String) consecutive e"
-// + "lements (#10177) (0, 12, 12)")
-// @NotYetImplemented({ FF10 })
-// public void test_319() throws Exception {
-// runTest(319);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "manipulation: wrap(Function) with index "
-// + "(#10177) (0, 6, 6)",
-// IE8 = "manipulation: wrapAll(String|Element) (0"
-// + ", 8, 8)")
-// @NotYetImplemented({ FF10 })
-// public void test_320() throws Exception {
-// runTest(320);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "manipulation: wrap(String) consecutive e"
-// + "lements (#10177) (0, 12, 12)",
-// IE8 = "manipulation: wrapInner(String|Element) "
-// + "(0, 11, 11)")
-// @NotYetImplemented({ FF10 })
-// public void test_321() throws Exception {
-// runTest(321);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "manipulation: wrapAll(String|Element) (0"
-// + ", 8, 8)",
-// IE8 = "manipulation: wrapInner(Function) (0, 11"
-// + ", 11)")
-// @NotYetImplemented({ FF3_6, FF10 })
-// public void test_322() throws Exception {
-// runTest(322);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "manipulation: wrapInner(String|Element) "
-// + "(0, 11, 11)",
-// IE8 = "manipulation: unwrap() (0, 9, 9)")
-// @NotYetImplemented({ FF10 })
-// public void test_323() throws Exception {
-// runTest(323);
-// }
-//
-// /**
-// * @throws Exception if an error occurs
-// */
-// @Test
-// @Alerts(FF3_6 = "manipulation: wrapInner(Function) (0, 11"
-// + ", 11)",
-// IE8 = "manipulation: append(String|Element|Arra"
-// + "y<Element>|jQuery) (2, 4, 6)")
-// @NotYetImplemented({ FF10 })
-// public void test_324() throws Exception {
@@ Diff output truncated at 100000 characters. @@
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|