Fixed TTS-1875 to move 7 TCs from delta to tct-appcache-html5-tests
authoryuhanx.xu <yuhanx.xu@intel.com>
Tue, 13 Aug 2013 08:34:57 +0000 (16:34 +0800)
committerwanmingx.lin <wanmingx.lin@intel.com>
Wed, 14 Aug 2013 09:06:25 +0000 (17:06 +0800)
Signed-off-by: yuhanx.xu <yuhanx.xu@intel.com>
tct-appcache-html5-tests/appcache/appcache_CHECKING_type.html [new file with mode: 0644]
tct-appcache-html5-tests/appcache/appcache_DOWNLOADING_type.html [new file with mode: 0644]
tct-appcache-html5-tests/appcache/appcache_IDLE_type.html [new file with mode: 0644]
tct-appcache-html5-tests/appcache/appcache_OBSOLETE_type.html [new file with mode: 0644]
tct-appcache-html5-tests/appcache/appcache_UNCACHED_type.html [new file with mode: 0644]
tct-appcache-html5-tests/appcache/appcache_UPDATEREADY_type.html [new file with mode: 0644]
tct-appcache-html5-tests/appcache/appcache_status_type.html [new file with mode: 0644]
tct-appcache-html5-tests/tests.xml

diff --git a/tct-appcache-html5-tests/appcache/appcache_CHECKING_type.html b/tct-appcache-html5-tests/appcache/appcache_CHECKING_type.html
new file mode 100644 (file)
index 0000000..a6bc474
--- /dev/null
@@ -0,0 +1,59 @@
+<!DOCTYPE html>
+<!--
+Copyright (c) 2013 Intel Corporation.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+* Redistributions of works must retain the original copyright notice, this list
+  of conditions and the following disclaimer.
+* Redistributions in binary form must reproduce the original copyright notice,
+  this list of conditions and the following disclaimer in the documentation
+  and/or other materials provided with the distribution.
+* Neither the name of Intel Corporation nor the names of its contributors
+  may be used to endorse or promote products derived from this work without
+  specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT,
+INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
+OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
+EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Authors:
+        Fan,Weiwei <weiwix.fan@intel.com>
+        Xu,Yuhan <yuhanx.xu@intel.com>
+
+-->
+
+<html>
+  <head>
+    <title>AppCache Test: appcache_CHECKING_type</title>
+    <link rel="author" title="Intel" href="http://www.intel.com" />
+    <link rel="help" href="http://www.w3.org/TR/2012/WD-html5-20121025/offline.html#applicationcache" />
+    <meta name="flags" content="" />
+    <meta name="assert" content="Check if appcache.CHECKING const is of type number" />
+    <script src="../resources/testharness.js"></script>
+    <script src="../resources/testharnessreport.js"></script>
+  </head>
+  <body>
+    <div id="log"></div>
+    <script>
+        test(
+            function () {
+                if (!("applicationCache" in window)) {
+                    assert_true(false, "The browser does not support applicationCache.");
+                    return;
+                }
+                assert_true(typeof applicationCache.CHECKING === "number", "appcache.CHECKING is of type number");
+            },
+            document.title
+        );
+    </script>
+  </body>
+</html>
diff --git a/tct-appcache-html5-tests/appcache/appcache_DOWNLOADING_type.html b/tct-appcache-html5-tests/appcache/appcache_DOWNLOADING_type.html
new file mode 100644 (file)
index 0000000..2cfbabb
--- /dev/null
@@ -0,0 +1,59 @@
+<!DOCTYPE html>
+<!--
+Copyright (c) 2013 Intel Corporation.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+* Redistributions of works must retain the original copyright notice, this list
+  of conditions and the following disclaimer.
+* Redistributions in binary form must reproduce the original copyright notice,
+  this list of conditions and the following disclaimer in the documentation
+  and/or other materials provided with the distribution.
+* Neither the name of Intel Corporation nor the names of its contributors
+  may be used to endorse or promote products derived from this work without
+  specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT,
+INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
+OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
+EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Authors:
+        Fan,Weiwei <weiwix.fan@intel.com>
+        Xu,Yuhan <yuhanx.xu@intel.com>
+
+-->
+
+<html>
+  <head>
+    <title>AppCache Test: appcache_DOWNLOADING_type</title>
+    <link rel="author" title="Intel" href="http://www.intel.com" />
+    <link rel="help" href="http://www.w3.org/TR/2012/WD-html5-20121025/offline.html#applicationcache" />
+    <meta name="flags" content="" />
+    <meta name="assert" content="Check if appcache.DOWNLOADING const is of type number" />
+    <script src="../resources/testharness.js"></script>
+    <script src="../resources/testharnessreport.js"></script>
+  </head>
+  <body>
+    <div id="log"></div>
+    <script>
+        test(
+            function () {
+                if (!("applicationCache" in window)) {
+                    assert_true(false, "The browser does not support applicationCache.");
+                    return;
+                }
+                assert_true(typeof applicationCache.DOWNLOADING === "number", "appcache.DOWNLOADING is of type number");
+            },
+            document.title
+        );
+    </script>
+  </body>
+</html>
diff --git a/tct-appcache-html5-tests/appcache/appcache_IDLE_type.html b/tct-appcache-html5-tests/appcache/appcache_IDLE_type.html
new file mode 100644 (file)
index 0000000..32b783f
--- /dev/null
@@ -0,0 +1,59 @@
+<!DOCTYPE html>
+<!--
+Copyright (c) 2013 Intel Corporation.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+* Redistributions of works must retain the original copyright notice, this list
+  of conditions and the following disclaimer.
+* Redistributions in binary form must reproduce the original copyright notice,
+  this list of conditions and the following disclaimer in the documentation
+  and/or other materials provided with the distribution.
+* Neither the name of Intel Corporation nor the names of its contributors
+  may be used to endorse or promote products derived from this work without
+  specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT,
+INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
+OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
+EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Authors:
+        Fan,Weiwei <weiwix.fan@intel.com>
+        Xu,Yuhan <yuhanx.xu@intel.com>
+
+-->
+
+<html>
+  <head>
+    <title>AppCache Test: appcache_IDLE_type</title>
+    <link rel="author" title="Intel" href="http://www.intel.com" />
+    <link rel="help" href="http://www.w3.org/TR/2012/WD-html5-20121025/offline.html#applicationcache" />
+    <meta name="flags" content="" />
+    <meta name="assert" content="Check if appcache.IDLE const is of type number" />
+    <script src="../resources/testharness.js"></script>
+    <script src="../resources/testharnessreport.js"></script>
+  </head>
+  <body>
+    <div id="log"></div>
+    <script>
+        test(
+            function () {
+                if (!("applicationCache" in window)) {
+                    assert_true(false, "The browser does not support applicationCache.");
+                    return;
+                }
+                assert_true(typeof applicationCache.IDLE === "number", "appcache.IDLE is of type number");
+            },
+            document.title
+        );
+    </script>
+  </body>
+</html>
diff --git a/tct-appcache-html5-tests/appcache/appcache_OBSOLETE_type.html b/tct-appcache-html5-tests/appcache/appcache_OBSOLETE_type.html
new file mode 100644 (file)
index 0000000..2a40fc6
--- /dev/null
@@ -0,0 +1,59 @@
+<!DOCTYPE html>
+<!--
+Copyright (c) 2013 Intel Corporation.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+* Redistributions of works must retain the original copyright notice, this list
+  of conditions and the following disclaimer.
+* Redistributions in binary form must reproduce the original copyright notice,
+  this list of conditions and the following disclaimer in the documentation
+  and/or other materials provided with the distribution.
+* Neither the name of Intel Corporation nor the names of its contributors
+  may be used to endorse or promote products derived from this work without
+  specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT,
+INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
+OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
+EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Authors:
+        Fan,Weiwei <weiwix.fan@intel.com>
+        Xu,Yuhan <yuhanx.xu@intel.com>
+
+-->
+
+<html>
+  <head>
+    <title>AppCache Test: appcache_OBSOLETE_type</title>
+    <link rel="author" title="Intel" href="http://www.intel.com" />
+    <link rel="help" href="http://www.w3.org/TR/2012/WD-html5-20121025/offline.html#applicationcache" />
+    <meta name="flags" content="" />
+    <meta name="assert" content="Check if appcache.OBSOLETE const is of type number" />
+    <script src="../resources/testharness.js"></script>
+    <script src="../resources/testharnessreport.js"></script>
+  </head>
+  <body>
+    <div id="log"></div>
+    <script>
+        test(
+            function () {
+                if (!("applicationCache" in window)) {
+                    assert_true(false, "The browser does not support applicationCache.");
+                    return;
+                }
+                assert_true(typeof applicationCache.OBSOLETE === "number", "appcache.OBSOLETE is of type number");
+            },
+            document.title
+        );
+    </script>
+  </body>
+</html>
diff --git a/tct-appcache-html5-tests/appcache/appcache_UNCACHED_type.html b/tct-appcache-html5-tests/appcache/appcache_UNCACHED_type.html
new file mode 100644 (file)
index 0000000..0ddd4f1
--- /dev/null
@@ -0,0 +1,59 @@
+<!DOCTYPE html>
+<!--
+Copyright (c) 2013 Intel Corporation.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+* Redistributions of works must retain the original copyright notice, this list
+  of conditions and the following disclaimer.
+* Redistributions in binary form must reproduce the original copyright notice,
+  this list of conditions and the following disclaimer in the documentation
+  and/or other materials provided with the distribution.
+* Neither the name of Intel Corporation nor the names of its contributors
+  may be used to endorse or promote products derived from this work without
+  specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT,
+INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
+OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
+EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Authors:
+        Fan,Weiwei <weiwix.fan@intel.com>
+        Xu,Yuhan <yuhanx.xu@intel.com>
+
+-->
+
+<html>
+  <head>
+    <title>AppCache Test: appcache_UNCACHED_type</title>
+    <link rel="author" title="Intel" href="http://www.intel.com" />
+    <link rel="help" href="http://www.w3.org/TR/2012/WD-html5-20121025/offline.html#applicationcache" />
+    <meta name="flags" content="" />
+    <meta name="assert" content="Check if appcache.UNCACHED const is of type number" />
+    <script src="../resources/testharness.js"></script>
+    <script src="../resources/testharnessreport.js"></script>
+  </head>
+  <body>
+    <div id="log"></div>
+    <script>
+        test(
+            function () {
+                if (!("applicationCache" in window)) {
+                    assert_true(false, "The browser does not support applicationCache.");
+                    return;
+                }
+                assert_true(typeof applicationCache.UNCACHED === "number", "appcache.UNCACHED is of type number");
+            },
+            document.title
+        );
+    </script>
+  </body>
+</html>
diff --git a/tct-appcache-html5-tests/appcache/appcache_UPDATEREADY_type.html b/tct-appcache-html5-tests/appcache/appcache_UPDATEREADY_type.html
new file mode 100644 (file)
index 0000000..214e3d3
--- /dev/null
@@ -0,0 +1,59 @@
+<!DOCTYPE html>
+<!--
+Copyright (c) 2013 Intel Corporation.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+* Redistributions of works must retain the original copyright notice, this list
+  of conditions and the following disclaimer.
+* Redistributions in binary form must reproduce the original copyright notice,
+  this list of conditions and the following disclaimer in the documentation
+  and/or other materials provided with the distribution.
+* Neither the name of Intel Corporation nor the names of its contributors
+  may be used to endorse or promote products derived from this work without
+  specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT,
+INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
+OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
+EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Authors:
+        Fan,Weiwei <weiwix.fan@intel.com>
+        Xu,Yuhan <yuhanx.xu@intel.com>
+
+-->
+
+<html>
+  <head>
+    <title>AppCache Test: appcache_UPDATEREADY_type</title>
+    <link rel="author" title="Intel" href="http://www.intel.com" />
+    <link rel="help" href="http://www.w3.org/TR/2012/WD-html5-20121025/offline.html#applicationcache" />
+    <meta name="flags" content="" />
+    <meta name="assert" content="Check if appcache.UPDATEREADY const is of type number" />
+    <script src="../resources/testharness.js"></script>
+    <script src="../resources/testharnessreport.js"></script>
+  </head>
+  <body>
+    <div id="log"></div>
+    <script>
+        test(
+            function () {
+                if (!("applicationCache" in window)) {
+                    assert_true(false, "The browser does not support applicationCache.");
+                    return;
+                }
+                assert_true(typeof applicationCache.UPDATEREADY === "number", "appcache.UPDATEREADY is of type number");
+            },
+            document.title
+        );
+    </script>
+  </body>
+</html>
diff --git a/tct-appcache-html5-tests/appcache/appcache_status_type.html b/tct-appcache-html5-tests/appcache/appcache_status_type.html
new file mode 100644 (file)
index 0000000..5bcc584
--- /dev/null
@@ -0,0 +1,59 @@
+<!doctype html>
+<!--
+Copyright (c) 2013 Intel Corporation.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+* Redistributions of works must retain the original copyright notice, this list
+  of conditions and the following disclaimer.
+* Redistributions in binary form must reproduce the original copyright notice,
+  this list of conditions and the following disclaimer in the documentation
+  and/or other materials provided with the distribution.
+* Neither the name of Intel Corporation nor the names of its contributors
+  may be used to endorse or promote products derived from this work without
+  specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT,
+INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
+OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
+EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Authors:
+        Fan,Weiwei <weiwix.fan@intel.com>
+        Xu,Yuhan <yuhanx.xu@intel.com>
+
+-->
+
+<html>
+  <head>
+    <title>AppCache Test: appcache_status_type</title>
+    <link rel="author" title="Intel" href="http://www.intel.com" />
+    <link rel="help" href="http://www.w3.org/TR/2012/WD-html5-20121025/offline.html#applicationcache" />
+    <meta name="flags" content="" />
+    <meta name="assert" content="Check if ApplicationCache.status is of type number" />
+    <script src="../resources/testharness.js"></script>
+    <script src="../resources/testharnessreport.js"></script>
+  </head>
+  <body>
+    <div id="log"></div>
+    <script>
+        test(
+            function () {
+                if (!("applicationCache" in window)) {
+                    assert_true(false, "The browser does not support applicationCache.");
+                    return;
+                }
+                assert_true(typeof applicationCache.status === "number", "ApplicationCache.status is of type number");
+            },
+            document.title
+        );
+    </script>
+  </body>
+</html>
index c94d083348c8d05d8817587f80efb5aabb431558..2088ffc6edbbbc0db79919884b48bdd09614aca4 100644 (file)
           </spec>
         </specs>
       </testcase>
+      <testcase purpose="Check if appcache.CHECKING const is of type number" type="compliance" status="approved" component="WebAPI/Storage/HTML5 Application caches" execution_type="auto" priority="P2" id="appcache_CHECKING_type">
+        <description>
+          <steps>
+            <step order="1">
+              <step_desc>Check if appcache.CHECKING const is of type number</step_desc>
+              <expected>pass</expected>
+            </step>
+          </steps>
+          <test_script_entry>/opt/tct-appcache-html5-tests/appcache/appcache_CHECKING_type.html</test_script_entry>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="CHECKING" interface="ApplicationCache" specification="HTML5 Application caches" section="Storage" category="Tizen W3C API Specifications"/>
+            <spec_url>http://www.w3.org/TR/2012/WD-html5-20121025/offline.html#applicationcache</spec_url>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if appcache.DOWNLOADING const is of type number" type="compliance" status="approved" component="WebAPI/Storage/HTML5 Application caches" execution_type="auto" priority="P2" id="appcache_DOWNLOADING_type">
+        <description>
+          <steps>
+            <step order="1">
+              <step_desc>Check if appcache.DOWNLOADING const is of type number</step_desc>
+              <expected>pass</expected>
+            </step>
+          </steps>
+          <test_script_entry>/opt/tct-appcache-html5-tests/appcache/appcache_DOWNLOADING_type.html</test_script_entry>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="DOWNLOADING" interface="ApplicationCache" specification="HTML5 Application caches" section="Storage" category="Tizen W3C API Specifications"/>
+            <spec_url>http://www.w3.org/TR/2012/WD-html5-20121025/offline.html#applicationcache</spec_url>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if appcache.IDLE const is of type number" type="compliance" status="approved" component="WebAPI/Storage/HTML5 Application caches" execution_type="auto" priority="P2" id="appcache_IDLE_type">
+        <description>
+          <steps>
+            <step order="1">
+              <step_desc>Check if appcache.IDLE const is of type number</step_desc>
+              <expected>pass</expected>
+            </step>
+          </steps>
+          <test_script_entry>/opt/tct-appcache-html5-tests/appcache/appcache_IDLE_type.html</test_script_entry>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="IDLE" interface="ApplicationCache" specification="HTML5 Application caches" section="Storage" category="Tizen W3C API Specifications"/>
+            <spec_url>http://www.w3.org/TR/2012/WD-html5-20121025/offline.html#applicationcache</spec_url>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if appcache.OBSOLETE const is of type number" type="compliance" status="approved" component="WebAPI/Storage/HTML5 Application caches" execution_type="auto" priority="P2" id="appcache_OBSOLETE_type">
+        <description>
+          <steps>
+            <step order="1">
+              <step_desc>Check if appcache.OBSOLETE const is of type number</step_desc>
+              <expected>pass</expected>
+            </step>
+          </steps>
+          <test_script_entry>/opt/tct-appcache-html5-tests/appcache/appcache_OBSOLETE_type.html</test_script_entry>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="OBSOLETE" interface="ApplicationCache" specification="HTML5 Application caches" section="Storage" category="Tizen W3C API Specifications"/>
+            <spec_url>http://www.w3.org/TR/2012/WD-html5-20121025/offline.html#applicationcache</spec_url>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if ApplicationCache.status is of type number" type="compliance" status="approved" component="WebAPI/Storage/HTML5 Application caches" execution_type="auto" priority="P2" id="appcache_status_type">
+        <description>
+          <steps>
+            <step order="1">
+              <step_desc>Check if ApplicationCache.status is of type number</step_desc>
+              <expected>Pass</expected>
+            </step>
+          </steps>
+          <test_script_entry>/opt/tct-appcache-html5-tests/appcache/appcache_status_type.html</test_script_entry>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="status" interface="ApplicationCache" specification="HTML5 Application caches" section="Storage" category="Tizen W3C API Specifications"/>
+            <spec_url>http://www.w3.org/TR/2012/WD-html5-20121025/offline.html#applicationcache</spec_url>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if appcache.UNCACHED const is of type number" type="compliance" status="approved" component="WebAPI/Storage/HTML5 Application caches" execution_type="auto" priority="P2" id="appcache_UNCACHED_type">
+        <description>
+          <steps>
+            <step order="1">
+              <step_desc>Check if appcache.UNCACHED const is of type number</step_desc>
+              <expected>pass</expected>
+            </step>
+          </steps>
+          <test_script_entry>/opt/tct-appcache-html5-tests/appcache/appcache_UNCACHED_type.html</test_script_entry>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="UNCACHED" interface="ApplicationCache" specification="HTML5 Application caches" section="Storage" category="Tizen W3C API Specifications"/>
+            <spec_url>http://www.w3.org/TR/2012/WD-html5-20121025/offline.html#applicationcache</spec_url>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if appcache.UPDATEREADY const is of type number" type="compliance" status="approved" component="WebAPI/Storage/HTML5 Application caches" execution_type="auto" priority="P2" id="appcache_UPDATEREADY_type">
+        <description>
+          <steps>
+            <step order="1">
+              <step_desc>Check if appcache.UPDATEREADY const is of type number</step_desc>
+              <expected>pass</expected>
+            </step>
+          </steps>
+          <test_script_entry>/opt/tct-appcache-html5-tests/appcache/appcache_UPDATEREADY_type.html</test_script_entry>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="UPDATEREADY" interface="ApplicationCache" specification="HTML5 Application caches" section="Storage" category="Tizen W3C API Specifications"/>
+            <spec_url>http://www.w3.org/TR/2012/WD-html5-20121025/offline.html#applicationcache</spec_url>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
     </set>
   </suite>
 </test_definition>