--- /dev/null
+<!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>
--- /dev/null
+<!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>
--- /dev/null
+<!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>
--- /dev/null
+<!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>
--- /dev/null
+<!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>
--- /dev/null
+<!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>
--- /dev/null
+<!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>
</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>