From c690a6af25eabd9ed5c6b565a45259efedbbcac3 Mon Sep 17 00:00:00 2001 From: rsk1994 Date: Fri, 6 Jun 2014 06:29:51 +0530 Subject: Enabling some missed tests. How come were they missed ?! :o --- .../tests/level1/html/HTMLTableElement28.xml | 57 +++++++++++++++++++ .../tests/level1/html/HTMLTableElement28.xml.kfail | 57 ------------------- .../tests/level1/html/HTMLTableElement29.xml | 61 ++++++++++++++++++++ .../tests/level1/html/HTMLTableElement29.xml.kfail | 61 -------------------- .../tests/level1/html/HTMLTableElement30.xml | 64 +++++++++++++++++++++ .../tests/level1/html/HTMLTableElement30.xml.kfail | 64 --------------------- .../tests/level1/html/HTMLTableElement31.xml | 65 ++++++++++++++++++++++ .../tests/level1/html/HTMLTableElement31.xml.kfail | 65 ---------------------- .../tests/level1/html/HTMLTableElement32.xml | 51 +++++++++++++++++ .../tests/level1/html/HTMLTableElement32.xml.kfail | 51 ----------------- .../tests/level1/html/HTMLTableElement33.xml | 50 +++++++++++++++++ .../tests/level1/html/HTMLTableElement33.xml.kfail | 50 ----------------- .../tests/level1/html/HTMLTableRowElement05.xml | 45 +++++++++++++++ .../level1/html/HTMLTableRowElement05.xml.kfail | 45 --------------- test/testcases/tests/level1/html/area01.xml | 39 +++++++++++++ .../testcases/tests/level1/html/area01.xml.notimpl | 39 ------------- test/testcases/tests/level1/html/area02.xml | 39 +++++++++++++ .../testcases/tests/level1/html/area02.xml.notimpl | 39 ------------- test/testcases/tests/level1/html/area03.xml | 39 +++++++++++++ .../testcases/tests/level1/html/area03.xml.notimpl | 39 ------------- test/testcases/tests/level1/html/area04.xml | 39 +++++++++++++ .../testcases/tests/level1/html/area04.xml.notimpl | 39 ------------- test/testcases/tests/level1/html/basefont01.xml | 39 +++++++++++++ .../tests/level1/html/basefont01.xml.notimpl | 39 ------------- test/testcases/tests/level1/html/body01.xml | 40 +++++++++++++ .../testcases/tests/level1/html/body01.xml.notimpl | 40 ------------- 26 files changed, 628 insertions(+), 628 deletions(-) create mode 100644 test/testcases/tests/level1/html/HTMLTableElement28.xml delete mode 100644 test/testcases/tests/level1/html/HTMLTableElement28.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLTableElement29.xml delete mode 100644 test/testcases/tests/level1/html/HTMLTableElement29.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLTableElement30.xml delete mode 100644 test/testcases/tests/level1/html/HTMLTableElement30.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLTableElement31.xml delete mode 100644 test/testcases/tests/level1/html/HTMLTableElement31.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLTableElement32.xml delete mode 100644 test/testcases/tests/level1/html/HTMLTableElement32.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLTableElement33.xml delete mode 100644 test/testcases/tests/level1/html/HTMLTableElement33.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLTableRowElement05.xml delete mode 100644 test/testcases/tests/level1/html/HTMLTableRowElement05.xml.kfail create mode 100644 test/testcases/tests/level1/html/area01.xml delete mode 100644 test/testcases/tests/level1/html/area01.xml.notimpl create mode 100644 test/testcases/tests/level1/html/area02.xml delete mode 100644 test/testcases/tests/level1/html/area02.xml.notimpl create mode 100644 test/testcases/tests/level1/html/area03.xml delete mode 100644 test/testcases/tests/level1/html/area03.xml.notimpl create mode 100644 test/testcases/tests/level1/html/area04.xml delete mode 100644 test/testcases/tests/level1/html/area04.xml.notimpl create mode 100644 test/testcases/tests/level1/html/basefont01.xml delete mode 100644 test/testcases/tests/level1/html/basefont01.xml.notimpl create mode 100644 test/testcases/tests/level1/html/body01.xml delete mode 100644 test/testcases/tests/level1/html/body01.xml.notimpl (limited to 'test/testcases/tests/level1') diff --git a/test/testcases/tests/level1/html/HTMLTableElement28.xml b/test/testcases/tests/level1/html/HTMLTableElement28.xml new file mode 100644 index 0000000..95f300c --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLTableElement28.xml @@ -0,0 +1,57 @@ + + + + + + + +HTMLTableElement28 +NIST + + The insertRow() method inserts a new empty table row. + + Retrieve the second TABLE element and invoke the insertRow() method + with an index of 0. Currently the zero indexed row is in the THEAD + section of the TABLE. The number of rows in the THEAD section before + insertion of the new row is one. After the new row is inserted the number + of rows in the THEAD section is two. + +Rick Rivello +2002-05-02 + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLTableElement28.xml.kfail b/test/testcases/tests/level1/html/HTMLTableElement28.xml.kfail deleted file mode 100644 index 95f300c..0000000 --- a/test/testcases/tests/level1/html/HTMLTableElement28.xml.kfail +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - -HTMLTableElement28 -NIST - - The insertRow() method inserts a new empty table row. - - Retrieve the second TABLE element and invoke the insertRow() method - with an index of 0. Currently the zero indexed row is in the THEAD - section of the TABLE. The number of rows in the THEAD section before - insertion of the new row is one. After the new row is inserted the number - of rows in the THEAD section is two. - -Rick Rivello -2002-05-02 - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLTableElement29.xml b/test/testcases/tests/level1/html/HTMLTableElement29.xml new file mode 100644 index 0000000..ba62848 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLTableElement29.xml @@ -0,0 +1,61 @@ + + + + + + + +HTMLTableElement29 +NIST + + The insertRow() method inserts a new empty table row. + + Retrieve the second TABLE element and invoke the insertRow() method + with an index of two. Currently the 2nd indexed row is in the TBODY + section of the TABLE. The number of rows in the TBODY section before + insertion of the new row is two. After the new row is inserted the number + of rows in the TBODY section is three. + +Rick Rivello +2002-05-02 + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLTableElement29.xml.kfail b/test/testcases/tests/level1/html/HTMLTableElement29.xml.kfail deleted file mode 100644 index ba62848..0000000 --- a/test/testcases/tests/level1/html/HTMLTableElement29.xml.kfail +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - -HTMLTableElement29 -NIST - - The insertRow() method inserts a new empty table row. - - Retrieve the second TABLE element and invoke the insertRow() method - with an index of two. Currently the 2nd indexed row is in the TBODY - section of the TABLE. The number of rows in the TBODY section before - insertion of the new row is two. After the new row is inserted the number - of rows in the TBODY section is three. - -Rick Rivello -2002-05-02 - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLTableElement30.xml b/test/testcases/tests/level1/html/HTMLTableElement30.xml new file mode 100644 index 0000000..e45cf68 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLTableElement30.xml @@ -0,0 +1,64 @@ + + + + + + + +HTMLTableElement30 +NIST + + The insertRow() method inserts a new empty table row. + + Retrieve the second TABLE element and invoke the insertRow() method + with an index of four. After the new row is inserted the number of rows + in the table should be five. + Also the number of rows in the TFOOT section before + insertion of the new row is one. After the new row is inserted the number + of rows in the TFOOT section is two. + +Rick Rivello +2002-05-02 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLTableElement30.xml.kfail b/test/testcases/tests/level1/html/HTMLTableElement30.xml.kfail deleted file mode 100644 index e45cf68..0000000 --- a/test/testcases/tests/level1/html/HTMLTableElement30.xml.kfail +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - -HTMLTableElement30 -NIST - - The insertRow() method inserts a new empty table row. - - Retrieve the second TABLE element and invoke the insertRow() method - with an index of four. After the new row is inserted the number of rows - in the table should be five. - Also the number of rows in the TFOOT section before - insertion of the new row is one. After the new row is inserted the number - of rows in the TFOOT section is two. - -Rick Rivello -2002-05-02 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLTableElement31.xml b/test/testcases/tests/level1/html/HTMLTableElement31.xml new file mode 100644 index 0000000..e5eb32d --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLTableElement31.xml @@ -0,0 +1,65 @@ + + + + + + + +HTMLTableElement31 +NIST + + The insertRow() method inserts a new empty table row. In addition, when + the table is empty the row is inserted into a TBODY which is created + and inserted into the table. + + Load the table1 file which has a non-empty table element. + Create an empty TABLE element and append to the document. + Check to make sure that the empty TABLE element doesn't + have a TBODY element. Insert a new row into the empty + TABLE element. Check for existence of the a TBODY element + in the table. + +Rick Rivello +2002-05-02 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLTableElement31.xml.kfail b/test/testcases/tests/level1/html/HTMLTableElement31.xml.kfail deleted file mode 100644 index e5eb32d..0000000 --- a/test/testcases/tests/level1/html/HTMLTableElement31.xml.kfail +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - -HTMLTableElement31 -NIST - - The insertRow() method inserts a new empty table row. In addition, when - the table is empty the row is inserted into a TBODY which is created - and inserted into the table. - - Load the table1 file which has a non-empty table element. - Create an empty TABLE element and append to the document. - Check to make sure that the empty TABLE element doesn't - have a TBODY element. Insert a new row into the empty - TABLE element. Check for existence of the a TBODY element - in the table. - -Rick Rivello -2002-05-02 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLTableElement32.xml b/test/testcases/tests/level1/html/HTMLTableElement32.xml new file mode 100644 index 0000000..a6529b0 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLTableElement32.xml @@ -0,0 +1,51 @@ + + + + + + + +HTMLTableElement32 +NIST + + The deleteRow() method deletes a table row. + + Retrieve the second TABLE element and invoke the deleteRow() method + with an index of 0(first row). Currently there are four rows in the + table. After the deleteRow() method is called there should be + three rows in the table. + +Rick Rivello +2002-05-02 + + + + + + + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLTableElement32.xml.kfail b/test/testcases/tests/level1/html/HTMLTableElement32.xml.kfail deleted file mode 100644 index a6529b0..0000000 --- a/test/testcases/tests/level1/html/HTMLTableElement32.xml.kfail +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - -HTMLTableElement32 -NIST - - The deleteRow() method deletes a table row. - - Retrieve the second TABLE element and invoke the deleteRow() method - with an index of 0(first row). Currently there are four rows in the - table. After the deleteRow() method is called there should be - three rows in the table. - -Rick Rivello -2002-05-02 - - - - - - - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLTableElement33.xml b/test/testcases/tests/level1/html/HTMLTableElement33.xml new file mode 100644 index 0000000..1ae507a --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLTableElement33.xml @@ -0,0 +1,50 @@ + + + + + + + +HTMLTableElement33 +NIST + + The deleteRow() method deletes a table row. + + Retrieve the second TABLE element and invoke the deleteRow() method + with an index of 3(last row). Currently there are four rows in the + table. The deleteRow() method is called and now there should be three. + +Rick Rivello +2002-05-02 + + + + + + + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLTableElement33.xml.kfail b/test/testcases/tests/level1/html/HTMLTableElement33.xml.kfail deleted file mode 100644 index 1ae507a..0000000 --- a/test/testcases/tests/level1/html/HTMLTableElement33.xml.kfail +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - -HTMLTableElement33 -NIST - - The deleteRow() method deletes a table row. - - Retrieve the second TABLE element and invoke the deleteRow() method - with an index of 3(last row). Currently there are four rows in the - table. The deleteRow() method is called and now there should be three. - -Rick Rivello -2002-05-02 - - - - - - - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLTableRowElement05.xml b/test/testcases/tests/level1/html/HTMLTableRowElement05.xml new file mode 100644 index 0000000..638126b --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLTableRowElement05.xml @@ -0,0 +1,45 @@ + + + + + + + +HTMLTableRowElement05 +NIST + + The cells attribute specifies the collection of cells in this row. + + Retrieve the fourth TR element and examine the value of + the cells length attribute. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLTableRowElement05.xml.kfail b/test/testcases/tests/level1/html/HTMLTableRowElement05.xml.kfail deleted file mode 100644 index 638126b..0000000 --- a/test/testcases/tests/level1/html/HTMLTableRowElement05.xml.kfail +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - -HTMLTableRowElement05 -NIST - - The cells attribute specifies the collection of cells in this row. - - Retrieve the fourth TR element and examine the value of - the cells length attribute. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/area01.xml b/test/testcases/tests/level1/html/area01.xml new file mode 100644 index 0000000..34ebdb2 --- /dev/null +++ b/test/testcases/tests/level1/html/area01.xml @@ -0,0 +1,39 @@ + + + + + + +area01 +Netscape + + + +Sivakiran Tummala +2002-02-08 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/area01.xml.notimpl b/test/testcases/tests/level1/html/area01.xml.notimpl deleted file mode 100644 index 34ebdb2..0000000 --- a/test/testcases/tests/level1/html/area01.xml.notimpl +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - -area01 -Netscape - - - -Sivakiran Tummala -2002-02-08 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/area02.xml b/test/testcases/tests/level1/html/area02.xml new file mode 100644 index 0000000..8f85598 --- /dev/null +++ b/test/testcases/tests/level1/html/area02.xml @@ -0,0 +1,39 @@ + + + + + + +area02 +Netscape + + + +Sivakiran Tummala +2002-02-08 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/area02.xml.notimpl b/test/testcases/tests/level1/html/area02.xml.notimpl deleted file mode 100644 index 8f85598..0000000 --- a/test/testcases/tests/level1/html/area02.xml.notimpl +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - -area02 -Netscape - - - -Sivakiran Tummala -2002-02-08 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/area03.xml b/test/testcases/tests/level1/html/area03.xml new file mode 100644 index 0000000..577e711 --- /dev/null +++ b/test/testcases/tests/level1/html/area03.xml @@ -0,0 +1,39 @@ + + + + + + +area03 +Netscape + + + +Sivakiran Tummala +2002-02-08 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/area03.xml.notimpl b/test/testcases/tests/level1/html/area03.xml.notimpl deleted file mode 100644 index 577e711..0000000 --- a/test/testcases/tests/level1/html/area03.xml.notimpl +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - -area03 -Netscape - - - -Sivakiran Tummala -2002-02-08 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/area04.xml b/test/testcases/tests/level1/html/area04.xml new file mode 100644 index 0000000..f964a57 --- /dev/null +++ b/test/testcases/tests/level1/html/area04.xml @@ -0,0 +1,39 @@ + + + + + + +area04 +Netscape + + + +Sivakiran Tummala +2002-02-08 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/area04.xml.notimpl b/test/testcases/tests/level1/html/area04.xml.notimpl deleted file mode 100644 index f964a57..0000000 --- a/test/testcases/tests/level1/html/area04.xml.notimpl +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - -area04 -Netscape - - - -Sivakiran Tummala -2002-02-08 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/basefont01.xml b/test/testcases/tests/level1/html/basefont01.xml new file mode 100644 index 0000000..eadfca4 --- /dev/null +++ b/test/testcases/tests/level1/html/basefont01.xml @@ -0,0 +1,39 @@ + + + + + + +basefont01 +Netscape + +The value of attribute color of the basefont element is read and checked against the expected value. + +Sivakiran Tummala +2002-02-08 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/basefont01.xml.notimpl b/test/testcases/tests/level1/html/basefont01.xml.notimpl deleted file mode 100644 index eadfca4..0000000 --- a/test/testcases/tests/level1/html/basefont01.xml.notimpl +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - -basefont01 -Netscape - -The value of attribute color of the basefont element is read and checked against the expected value. - -Sivakiran Tummala -2002-02-08 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/body01.xml b/test/testcases/tests/level1/html/body01.xml new file mode 100644 index 0000000..3ab179d --- /dev/null +++ b/test/testcases/tests/level1/html/body01.xml @@ -0,0 +1,40 @@ + + + + + + +body01 +Netscape + +Color of active links (after mouse-button down, but before mouse-button up). +The value of attribute alink of the body element is read and checked against the expected value. + +Sivakiran Tummala +2002-02-08 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/body01.xml.notimpl b/test/testcases/tests/level1/html/body01.xml.notimpl deleted file mode 100644 index 3ab179d..0000000 --- a/test/testcases/tests/level1/html/body01.xml.notimpl +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - -body01 -Netscape - -Color of active links (after mouse-button down, but before mouse-button up). -The value of attribute alink of the body element is read and checked against the expected value. - -Sivakiran Tummala -2002-02-08 - - - - - - - - - - - - - -- cgit v1.2.3