[common][tct-forms-html5-tests][sync tcs from tizen_4.0] 65/118365/1
authorxy.qian <xy.qian@samsung.com>
Fri, 10 Mar 2017 05:57:29 +0000 (13:57 +0800)
committerxy.qian <xy.qian@samsung.com>
Fri, 10 Mar 2017 05:57:29 +0000 (13:57 +0800)
Change-Id: Ie02947b5261bb72d13df21277716702c9e8d4b6b
Signed-off-by: xy.qian <xy.qian@samsung.com>
common/tct-forms-html5-tests/forms/form_requestAutocomplete_base.html [deleted file]
common/tct-forms-html5-tests/forms/form_requestAutocomplete_exist.html [deleted file]
common/tct-forms-html5-tests/tests.full.xml
common/tct-forms-html5-tests/tests.xml

diff --git a/common/tct-forms-html5-tests/forms/form_requestAutocomplete_base.html b/common/tct-forms-html5-tests/forms/form_requestAutocomplete_base.html
deleted file mode 100644 (file)
index 55087c5..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2016 Samsung Electronics Co., Ltd.
-
-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.
-
-Authors:
-        Qunfang Lin <qunfang.lin@samsung.com>
--->
-
-<html>
-<head>
-<title>form_requestAutocomplete_base</title>
-<meta charset="utf-8">
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-</head>
-<body>
-<div id="log"></div>
-<form id="testform"></form>
-<script>
-//==== TEST: form_requestAutocomplete_base
-//==== LABEL Check if the form::requestAutocomplete method works normally
-//==== PRIORITY P1
-//==== SPEC Web API:DomFormsStyles:HTMLFormElement:requestAutocomplete M
-//==== SPEC_URL http://www.w3.org/TR/2014/REC-html5-20141028/forms.html#forms
-//==== TEST_CRITERIA MR
-
-test(function () {
-    var form = document.getElementById("testform"), retVal;
-    retVal = form.requestAutocomplete();
-    assert_equals(retVal, undefined, "The return value of method form.requestAutocomplete should be undefined");
-}, document.title);
-
-</script>
-</body>
-</html>
\ No newline at end of file
diff --git a/common/tct-forms-html5-tests/forms/form_requestAutocomplete_exist.html b/common/tct-forms-html5-tests/forms/form_requestAutocomplete_exist.html
deleted file mode 100644 (file)
index c357591..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2016 Samsung Electronics Co., Ltd.
-
-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.
-
-Authors:
-        Qunfang Lin <qunfang.lin@samsung.com>
--->
-
-<html>
-<head>
-<title>form_requestAutocomplete_exist</title>
-<meta charset="utf-8">
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-</head>
-<body>
-<div id="log"></div>
-<form id="testform"></form>
-<script>
-//==== TEST: form_requestAutocomplete_exist
-//==== LABEL Check if the form::requestAutocomplete method exists
-//==== PRIORITY P0
-//==== SPEC Web API:DomFormsStyles:HTMLFormElement:requestAutocomplete M
-//==== SPEC_URL http://www.w3.org/TR/2014/REC-html5-20141028/forms.html#forms
-//==== TEST_CRITERIA ME
-
-test(function () {
-    var form = document.getElementById("testform");
-    assert_true("requestAutocomplete" in form, "The form.requestAutocomplete does not exist");
-
-}, document.title);
-
-</script>
-</body>
-</html>
\ No newline at end of file
index b33f6ee018cb3c1a3b543e9c7eb86a063591be22..59dd264966a9af0060141482ccf9ffb4ed41caf3 100644 (file)
           </spec>
         </specs>
       </testcase>
-      <testcase purpose="Check if the form::requestAutocomplete method works normally" type="compliance" status="approved" component="W3C_HTML5 APIs/DOM, Forms and Styles/HTML5 Forms (Partial)" execution_type="auto" priority="P1" id="form_requestAutocomplete_base">
-        <description>
-          <test_script_entry>/opt/tct-forms-html5-tests/forms/form_requestAutocomplete_base.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion element_type="method" element_name="requestAutocomplete" interface="HTMLFormElement" specification="HTML5 Forms (Partial)" section="DOM, Forms and Styles" category="Tizen W3C API Specifications"/>
-            <spec_url>http://www.w3.org/TR/2014/REC-html5-20141028/forms.html#forms</spec_url>
-            <spec_statement/>
-          </spec>
-        </specs>
-      </testcase>
-      <testcase purpose="Check if the form::requestAutocomplete method exists" type="compliance" status="approved" component="W3C_HTML5 APIs/DOM, Forms and Styles/HTML5 Forms (Partial)" execution_type="auto" priority="P0" id="form_requestAutocomplete_exist">
-        <description>
-          <test_script_entry>/opt/tct-forms-html5-tests/forms/form_requestAutocomplete_exist.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion element_type="method" element_name="requestAutocomplete" interface="HTMLFormElement" specification="HTML5 Forms (Partial)" section="DOM, Forms and Styles" category="Tizen W3C API Specifications"/>
-            <spec_url>http://www.w3.org/TR/2014/REC-html5-20141028/forms.html#forms</spec_url>
-            <spec_statement/>
-          </spec>
-        </specs>
-      </testcase>
     </set>
   </suite>
 </test_definition>
\ No newline at end of file
index 4dfded67e6f5925354cabf19a3680f6300c499e7..a2e9186386d13c7ca37578e9901645bc8b1b5c8b 100644 (file)
           <test_script_entry>/opt/tct-forms-html5-tests/forms/form_reportValidity_exist.html</test_script_entry>
         </description>
       </testcase>
-      <testcase component="W3C_HTML5 APIs/DOM, Forms and Styles/HTML5 Forms (Partial)" execution_type="auto" id="form_requestAutocomplete_base" priority="P1" purpose="Check if the form::requestAutocomplete method works normally">
-        <description>
-          <test_script_entry>/opt/tct-forms-html5-tests/forms/form_requestAutocomplete_base.html</test_script_entry>
-        </description>
-      </testcase>
-      <testcase component="W3C_HTML5 APIs/DOM, Forms and Styles/HTML5 Forms (Partial)" execution_type="auto" id="form_requestAutocomplete_exist" priority="P0" purpose="Check if the form::requestAutocomplete method exists">
-        <description>
-          <test_script_entry>/opt/tct-forms-html5-tests/forms/form_requestAutocomplete_exist.html</test_script_entry>
-        </description>
-      </testcase>
       <testcase component="W3C_HTML5 APIs/DOM, Forms and Styles/HTML5 Forms (Partial)" execution_type="auto" id="HTMLFormElement_in_window" priority="P3" purpose="Check if HTMLFormElement interface exists in window">
         <description>
           <test_script_entry>/opt/tct-forms-html5-tests/forms/HTMLFormElement_in_window.html</test_script_entry>