[common][text][DPTTIZEN-3204, remove one invalid tc] 78/248778/1
authorqunfang.lin <qunfang.lin@samsung.com>
Wed, 2 Dec 2020 06:31:39 +0000 (14:31 +0800)
committerqunfang.lin <qunfang.lin@samsung.com>
Wed, 2 Dec 2020 06:36:05 +0000 (14:36 +0800)
-As described in https://chromestatus.com/features/4867142128238592,
that feature had removed from chrome 80.
So this tc is valid no more, and should be removed.

Change-Id: I33fafefa5d8c845df3cc22829995fbc0b1d8de14
Signed-off-by: qunfang.lin <qunfang.lin@samsung.com>
common/tct-text-css3-tests/tests.full.xml
common/tct-text-css3-tests/tests.xml
common/tct-text-css3-tests/text/CSS3TextEffects_text-appearance_button.html [deleted file]

index 39397cd7d26c5497a9a7b7f383703ab1b421da59..2c3c7406cf9fcae19ef78d0ea991be17aea284a0 100755 (executable)
           </spec>
         </specs>
       </testcase>
-      <testcase purpose="Check if the element appearance test expected button" type="compliance" status="approved" component="W3C/HTML5 APIs/DOM, Forms and Styles/CSS Text Module Level 3 (Partial)" execution_type="manual" priority="P2" id="CSS3TextEffects_text-appearance_button">
-        <description>
-          <test_script_entry>/opt/tct-text-css3-tests/text/CSS3TextEffects_text-appearance_button.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion element_type="property" element_name="appearance" interface="CSS" specification="CSS Text Module Level 3 (Partial)" section="DOM, Forms and Styles" category="Tizen W3C API Specifications"/>
-            <spec_url>http://www.w3.org/TR/2012/WD-css3-text-20121113/</spec_url>
-            <spec_statement/>
-          </spec>
-        </specs>
-      </testcase>
       <testcase purpose="Check if the element text-align-last test expected 'center'" type="compliance" status="approved" component="W3C/HTML5 APIs/DOM, Forms and Styles/CSS Text Module Level 3 (Partial)" execution_type="auto" priority="P2" id="CSS3TextEffects_text-align-last_center">
         <description>
           <test_script_entry>/opt/tct-text-css3-tests/text/CSS3TextEffects_text-align-last_center.html</test_script_entry>
index 6df5772262f89d4810be445280220c141a7bf8f0..e0a293ba1d84b876462408b3c5e4f24a587bd4ba 100755 (executable)
           <test_script_entry>/opt/tct-text-css3-tests/text/CSS3TextEffects_text-indent_percentage.html</test_script_entry>
         </description>
       </testcase>
-      <testcase component="W3C/HTML5 APIs/DOM, Forms and Styles/CSS Text Module Level 3 (Partial)" execution_type="manual" id="CSS3TextEffects_text-appearance_button" purpose="Check if the element appearance test expected button">
-        <description>
-          <test_script_entry>/opt/tct-text-css3-tests/text/CSS3TextEffects_text-appearance_button.html</test_script_entry>
-        </description>
-      </testcase>
       <testcase component="W3C/HTML5 APIs/DOM, Forms and Styles/CSS Text Module Level 3 (Partial)" execution_type="auto" id="CSS3TextEffects_text-align-last_center" purpose="Check if the element text-align-last shows correctly">
         <description>
           <test_script_entry>/opt/tct-text-css3-tests/text/CSS3TextEffects_text-align-last_center.html</test_script_entry>
diff --git a/common/tct-text-css3-tests/text/CSS3TextEffects_text-appearance_button.html b/common/tct-text-css3-tests/text/CSS3TextEffects_text-appearance_button.html
deleted file mode 100755 (executable)
index fb66018..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2015 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.
-
-Author:
-        jun gao <jun1.gao@samsung.com>
-
--->
-<html>
-  <head>
-    <title>CSS3 Text Effects Test: CSS3TextEffects_text-appearance_button</title>
-    <link rel="author" title="Samsung" href="http://www.samsung.com" />
-    <meta name="flags" content="" />
-    <meta name="assert" content="To check if the element appearance test expected button" />
-    <style>
-      div {
-        -moz-appearance:button; /* Firefox */
-        -webkit-appearance:button; /* Safari and Chrome */
-        appearance:button;
-      }
-    </style>
-  </head>
-  <body>
-    <p>the test pass if it appear "Some text" button </p>
-    <div> Some text </div>
-  </body>
-</html>