Removed some TCs in tct-rt02-wrt-tests which not defined in spec
authorHao Yunfei <yunfeix.hao@intel.com>
Tue, 4 Jun 2013 12:32:09 +0000 (20:32 +0800)
committerHao Yunfei <yunfeix.hao@intel.com>
Tue, 4 Jun 2013 12:32:09 +0000 (20:32 +0800)
Change-Id: Ie475b1f6aa3904fd351a3b629650be125be57e16
Signed-off-by: Hao Yunfei <yunfeix.hao@intel.com>
tct-rt02-wrt-tests/sys-listen-low-memory-event-40m/config.xml [deleted file]
tct-rt02-wrt-tests/sys-listen-low-memory-event-40m/custom.png [deleted file]
tct-rt02-wrt-tests/sys-listen-low-memory-event-40m/index.html [deleted file]
tct-rt02-wrt-tests/sys-listen-low-memory-event-60m/config.xml [deleted file]
tct-rt02-wrt-tests/sys-listen-low-memory-event-60m/custom.png [deleted file]
tct-rt02-wrt-tests/sys-listen-low-memory-event-60m/index.html [deleted file]
tct-rt02-wrt-tests/tests.xml

diff --git a/tct-rt02-wrt-tests/sys-listen-low-memory-event-40m/config.xml b/tct-rt02-wrt-tests/sys-listen-low-memory-event-40m/config.xml
deleted file mode 100644 (file)
index ec19019..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<widget id="http://tizen.org/sys-listen-low-memory-event-40m" xmlns="http://www.w3.org/ns/widgets" xmlns:tizen="http://tizen.org/ns/widgets" viewmodes="">
-  <content src="index.html"/>
-  <icon src="custom.png" height="123" width="123"/>
-  <name>sys-listen-low-memory-event-40m</name>
-  <tizen:application id="wrt3sll052.SysListenLowMemoryEvent40m" package="wrt3sll052" required_version="2.1"/>
-</widget>
diff --git a/tct-rt02-wrt-tests/sys-listen-low-memory-event-40m/custom.png b/tct-rt02-wrt-tests/sys-listen-low-memory-event-40m/custom.png
deleted file mode 100644 (file)
index 6bdebd1..0000000
Binary files a/tct-rt02-wrt-tests/sys-listen-low-memory-event-40m/custom.png and /dev/null differ
diff --git a/tct-rt02-wrt-tests/sys-listen-low-memory-event-40m/index.html b/tct-rt02-wrt-tests/sys-listen-low-memory-event-40m/index.html
deleted file mode 100644 (file)
index c7bdade..0000000
+++ /dev/null
@@ -1,101 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2012 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:
-        Hao, Yunfei <yunfenx.hao@intel.com>
-
--->
-
-<html>
-  <head>
-    <title>WRT Test: sys-listen-low-memory-event-40m</title>
-    <link rel="author" title="Intel" href="http://www.intel.com" />
-    <link rel="help" href="" />
-    <meta name="flags" content="" />
-    <meta name="assert" content="Check if WRT is able to notify WebKit to clear web app's resource cache and remove unused surface textures when the memory is less than 40M." />
-    <meta charset="utf-8">
-    <script language="javascript" type="text/javascript">
-        function changeMemory(num) {
-            var str = "";
-            for (var i = 0; i < 1024*512*num; i++) {
-                str += "a";
-            }
-            alert("Cost "+17*num+"M memory success");
-        }
-        function changeMemory200() {
-            var str2 = "";
-            for (var i = 0; i < 1024*512*12; i++) {
-                str2 += "a";
-            }
-            alert("Cost "+17*12+"M memory success");
-        }
-    </script>
-  </head>
-  <body>
-      <p>1.Use the command "free" in sdb shell to check how many memory are free.</p>
-      <p>2.If the free memory is more than 400MB, then push the button "cost more 204MB",then ruturn 1. </p>
-      <p>3.Push the button bellow to make memory low than 40MB. </p>
-      <p>  e.g. When free is about 220MB then push the button "cost 170MB memory". </p>
-      <p>4.Long touch "home" button to check if the closed the app which should be closed. </p>
-    -----------------------------------------------------
-      <div id="divbutton1">
-        <button onclick="changeMemory200();">cost more 204MB </button>
-        Touch this button when the free memory is more than <span style="color:red;">400 </span>MB.
-      </div>
-    -----------------------------------------------------
-      <div id="divbutton1">
-        <button onclick="changeMemory(1);">cost 17MB memory </button>
-      </div>
-      <div id="divbutton1">
-        <button onclick="changeMemory(2);">cost 34MB memory </button>
-      </div>
-      <div id="divbutton1">
-        <button onclick="changeMemory(3);">cost 51MB memory </button>
-      </div>
-      <div id="divbutton1">
-        <button onclick="changeMemory(4);">cost 68MB memory </button>
-      </div>
-      <div id="divbutton1">
-        <button onclick="changeMemory(5);">cost 85MB memory </button>
-      </div>
-      <div id="divbutton1">
-        <button onclick="changeMemory(6);">cost 102MB memory </button>
-      </div>
-      <div id="divbutton1">
-        <button onclick="changeMemory(7);">cost 119MB memory </button>
-      </div>
-      <div id="divbutton1">
-        <button onclick="changeMemory(8);">cost 136MB memory </button>
-      </div>
-      <div id="divbutton1">
-        <button onclick="changeMemory(9);">cost 153MB memory </button>
-      </div>
-      <div id="divbutton1">
-        <button onclick="changeMemory(10);">cost 170MB memory </button>
-      </div>
-  </body>
-</html>
diff --git a/tct-rt02-wrt-tests/sys-listen-low-memory-event-60m/config.xml b/tct-rt02-wrt-tests/sys-listen-low-memory-event-60m/config.xml
deleted file mode 100644 (file)
index 0922ef7..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<widget id="http://tizen.org/sys-listen-low-memory-event-60m" xmlns="http://www.w3.org/ns/widgets" xmlns:tizen="http://tizen.org/ns/widgets" viewmodes="">
-  <content src="index.html"/>
-  <icon src="custom.png" height="123" width="123"/>
-  <name>sys-listen-low-memory-event-60m</name>
-  <tizen:application id="wrt3sll051.SysListenLowMemoryEvent60m" package="wrt3sll051" required_version="2.1"/>
-</widget>
diff --git a/tct-rt02-wrt-tests/sys-listen-low-memory-event-60m/custom.png b/tct-rt02-wrt-tests/sys-listen-low-memory-event-60m/custom.png
deleted file mode 100644 (file)
index 6bdebd1..0000000
Binary files a/tct-rt02-wrt-tests/sys-listen-low-memory-event-60m/custom.png and /dev/null differ
diff --git a/tct-rt02-wrt-tests/sys-listen-low-memory-event-60m/index.html b/tct-rt02-wrt-tests/sys-listen-low-memory-event-60m/index.html
deleted file mode 100644 (file)
index e717427..0000000
+++ /dev/null
@@ -1,101 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2012 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:
-        Hao, Yunfei <yunfenx.hao@intel.com>
-
--->
-
-<html>
-  <head>
-    <title>WRT Test: sys-listen-low-memory-event-60m</title>
-    <link rel="author" title="Intel" href="http://www.intel.com" />
-    <link rel="help" href="" />
-    <meta name="flags" content="" />
-    <meta name="assert" content="Check if WRT is able to notify WebKit to clear web app's resource cache and remove unused surface textures when the memory is less than 60M." />
-    <meta charset="utf-8">
-    <script language="javascript" type="text/javascript">
-        function changeMemory(num) {
-            var str = "";
-            for (var i = 0; i < 1024*1024*num; i++) {
-                str += "a";
-            }
-            alert("Cost "+34*num+"M memory success");
-        }
-        function changeMemory300() {
-            var str2 = "";
-            for (var i = 0; i < 1024*1024*9; i++) {
-                str2 += "a";
-            }
-            alert("Cost "+34*9+"M memory success");
-        }
-    </script>
-  </head>
-  <body>
-      <p>1.Use the command "free" in sdb shell to check how many memory are free.</p>
-      <p>2.If the free memory is more than 600MB, then push the button "cost more 300MB",then ruturn 1. </p>
-      <p>3.Push the button bellow to make memory low than 60MB. </p>
-      <p>  e.g. When free is about 220MB then push the button "cost 170MB memory". </p>
-      <p>4.Long touch "home" button to check if the closed the app which should be closed. </p>
-    -----------------------------------------------------
-      <div id="divbutton1">
-        <button onclick="changeMemory300();">cost more 300MB </button>
-        Touch this button when the free memory is more than <span style="color:red;">600 </span>MB.
-      </div>
-    -----------------------------------------------------
-      <div id="divbutton1">
-        <button onclick="changeMemory(1);">cost 34MB memory </button>
-      </div>
-      <div id="divbutton1">
-        <button onclick="changeMemory(2);">cost 68MB memory </button>
-      </div>
-      <div id="divbutton1">
-        <button onclick="changeMemory(3);">cost 102MB memory </button>
-      </div>
-      <div id="divbutton1">
-        <button onclick="changeMemory(4);">cost 136MB memory </button>
-      </div>
-      <div id="divbutton1">
-        <button onclick="changeMemory(5);">cost 170MB memory </button>
-      </div>
-      <div id="divbutton1">
-        <button onclick="changeMemory(6);">cost 204MB memory </button>
-      </div>
-      <div id="divbutton1">
-        <button onclick="changeMemory(7);">cost 238MB memory </button>
-      </div>
-      <div id="divbutton1">
-        <button onclick="changeMemory(8);">cost 272MB memory </button>
-      </div>
-      <div id="divbutton1">
-        <button onclick="changeMemory(9);">cost 306MB memory </button>
-      </div>
-      <div id="divbutton1">
-        <button onclick="changeMemory(10);">cost 340MB memory </button>
-      </div>
-  </body>
-</html>
index d7bd74c..ecd1679 100644 (file)
 <?xml version="1.0" encoding="UTF-8"?>
-<?xml-stylesheet type="text/xsl"  href="testcase.xsl"?>
+<?xml-stylesheet type="text/xsl" href="testcase.xsl"?>
 <test_definition>
-<suite name="tct-rt02-wrt-tests">
-  <set name="WebApplicationRuntime">
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="lifecycle-load-event" execution_type="manual" purpose="Check if WRT supports W3C DOM load event" priority="P0" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install lifecycle-load-event.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Launch the application.</step_desc>
-            <expected>PASS: if there is a green "PASS" on screen display.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C DOM load, unload and Page Visibility events for all pages of a Web Application.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="lifecycle-unload-event" execution_type="manual" purpose="Check if WRT supports W3C DOM unload event." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install lifecycle-unload-event.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Touch "run" button on screen.</step_desc>
-            <expected>PASS: if there is a correct alert("unload event success!").</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C DOM load, unload and Page Visibility events for all pages of a Web Application.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="lifecycle-page-visibility-visibilitychange" execution_type="manual" purpose="Check if WRT supports W3C DOM page visibility event visibilitychange" priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install lifecycle-page-visibility-visibilitychange.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Launch the application.</step_desc>
-            <expected>PASS: if the application is successfully launched with page visibility changed from "visible" to "hiden"</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C DOM load, unload and Page Visibility events for all pages of a Web Application.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="lifecycle-suspend-javascript" execution_type="manual" purpose="Check if WRT is able to suspend JavaScript execution and rendering when Web Application enters invisible state" priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install lifecycle-suspend-javascript .wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Launch the application.</step_desc>
-            <expected>PASS: if it is successfully launched.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Enter invisible state and return back visible state</step_desc>
-            <expected>PASS: if there is a green "PASS" on screen display.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0320" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST suspend JavaScript execution and rendering (including CSS animations) when Web Application enters invisible state, unless the author explicitly declared the Web Application to be a background service in the configuration document</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="lifecycle-resume-javascript" execution_type="manual" purpose="Check if WRT is able to resume JavaScript execution and rendering when Web Application enters visible state" priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install lifecycle-resume-javascript.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Launch the application.</step_desc>
-            <expected>PASS: if it is successfully launched.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Enter invisible state and return back visible state</step_desc>
-            <expected>PASS: if there is a green "PASS" on screen display.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0330" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>For applications whose execution was suspended the WRT MUST resume JavaScript execution and rendering (including CSS animations) when Web Application enters visible state.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="lifecycle-background-service" execution_type="manual" purpose="Check if Web Application is explicitly declared as a background service in the configuration document, then the WRT should continue JavaScript execution and rendering, even when the Web Application enters invisible state." priority="P0" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install lifecycle-background-service.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Launch the application.</step_desc>
-            <expected>PASS: if it is successfully launched.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Enter invisible state and return back visible state</step_desc>
-            <expected>PASS: if there is a green "PASS" on screen display.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0340" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST NOT suspend Web Application's execution if the author explicitly declared the Web Application to be a background service in the configuration document.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="lifecycle-launch-installed-app" execution_type="manual" purpose="Check if WRT is able to launch an installed application" priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;The lifecycle-hide-running-app.wgt has been installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install lifecycle-launch-installed-app.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears in screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Open the widget and touch the "Launch" button</step_desc>
-            <expected>PASS: if lifecycle-hide-running-app application is launched and see the word "Hello, hidding application".</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0320" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="lifecycle-launch-removed-app" execution_type="manual" purpose="Check if WRT is unable to launch an removed application" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;lifecycle-hide-running-app.wgt has been installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Uninstall lifecycle-hide-running-app.wgt</step_desc>
-            <expected>PASS: if uninstall the widget successfully.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Install lifecycle-launch-removed-app.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Touch the "Launch" button.</step_desc>
-            <expected>PASS: if there is no response.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0320" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="lifecycle-exit-running-app" execution_type="manual" purpose="Check if WRT is able to exit a running application safely." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install lifecycle-exit-running-app.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Open this widget and touch the "Exit" button.</step_desc>
-            <expected>PASS: if this widget is closed.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Check the application running list</step_desc>
-            <expected>PASS: if "lifecycle-exit-running-app is not in the running list".</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0320" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="lifecycle-hide-running-app" execution_type="manual" purpose="Check if WRT is able to change a web app to background, and keep running." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install lifecycle-hide-running-app.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Touch the "Hide" button.</step_desc>
-            <expected>PASS: if this widget will exit.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Check the application running list.</step_desc>
-            <expected>PASS: if "lifecycle-hide-running-app" is in the running list.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0340" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="sys-launch-service-app" execution_type="manual" purpose="Check if WRT is able to launch service application." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install sys-launch-service-app.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Open the widget and click the "Launch"</step_desc>
-            <expected>PASS: if the camera is launched.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="sys-launch-service-video-player" execution_type="manual" purpose="Check if WRT is able to launch video  application." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install sys-launch-service-video-player.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Open the widget and click the "Launch"</step_desc>
-            <expected>PASS: if the video player is launched.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="sys-launch-service-music-player" execution_type="manual" purpose="Check if WRT is able to launch music  application." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install sys-launch-service-music-player.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Open the widget and click the "Launch"</step_desc>
-            <expected>PASS: if the music player is launched.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="sys-launch-service-image-viewer" execution_type="manual" purpose="Check if WRT is able to launch image viewer  application." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install sys-launch-service-image-viewer.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Open the widget and click the "Launch"</step_desc>
-            <expected>PASS: if the image viewer is launched.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="sys-launch-service-camera" execution_type="manual" purpose="Check if WRT is able to launch camera  application." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install sys-launch-service-camera.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Open the widget and click the "Launch"</step_desc>
-            <expected>PASS: if the camera is launched.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="sys-launch-service-email" execution_type="manual" purpose="Check if WRT is able to launch email application." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install sys-launch-service-email.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Open the widget and click the "Launch"</step_desc>
-            <expected>PASS: if the email application is launched.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="sys-launch-service-gallery-pick" execution_type="manual" purpose="Check if WRT is able to pick an item from the gallery." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install sys-launch-service-gallery-pick.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Open the widget and click the "Launch"</step_desc>
-            <expected>PASS: if the gallery application is launched.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="sys-launch-service-gallery-show" execution_type="manual" purpose="Check if WRT is able to show the gallery." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install sys-launch-service-gallery-show.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Open the widget and click the "Launch"</step_desc>
-            <expected>PASS: if the gallery application is launched.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="sys-launch-service-message" execution_type="manual" purpose="Check if WRT is able to launch message application." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install sys-launch-service-message.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Open the widget and click the "Launch"</step_desc>
-            <expected>PASS: if the message application is launched.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="system-event-alarm-when-phone" execution_type="manual" purpose="Check that whether or not continue a call, when an alarm is coming." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Set a 60 seconds alarm and start it.</step_desc>
-            <expected>PASS: if alarm display 60 seconds, then start.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Make a call to this device, then waiting for the alarm.</step_desc>
-            <expected>PASS: if alarm event display on the screen and not interrupt the call.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="system-event-alarm-when-music" execution_type="manual" purpose="Check that whether or not continue a music, when a alarm is coming." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Set a 60 seconds alarm and start it.</step_desc>
-            <expected>PASS: if alarm display 60 seconds, then start.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Open music with this device, then waiting for the alarm.</step_desc>
-            <expected>PASS: if alarm event display on the screen and not interrupt the music.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="system-event-alarm-when-camera" execution_type="manual" purpose="Check that whether or not continue a camera, when a alarm is coming." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Set a 60 seconds alarm and start it.</step_desc>
-            <expected>PASS: if alarm display 60 seconds, then start.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Open camera with this device, then waiting for the alarm.</step_desc>
-            <expected>PASS: if alarm event display on the screen and not interrupt the camera.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="system-event-phone-when-memo" execution_type="manual" purpose="Check that whether or not continue a memo, when a phone is coming." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Open memo with this device, then waiting for the call.</step_desc>
-            <expected>PASS: if phone event display on the screen and not interrupt the memo.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="system-event-phone-when-camera" execution_type="manual" purpose="Check that whether or not continue a camera, when a phone is coming." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Open camera with this device, then waiting for the call.</step_desc>
-            <expected>PASS: if phone event display on the screen and not interrupt the camera.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="system-event-phone-when-music" execution_type="manual" purpose="Check that whether or not continue a music, when a phone is coming." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Open a music with this device, then waiting for the call.</step_desc>
-            <expected>PASS: if phone event display on the screen and not interrupt the music.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="system-event-lowpower-when-phone" execution_type="manual" purpose="Check that whether or not continue a phone, when low battery is coming." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Make a call to this device, then waiting for the low battery.</step_desc>
-            <expected>PASS: if low battery event display on the screen and not interrupt the call.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="system-event-lowpower-when-music" execution_type="manual" purpose="Check that whether or not continue a music, when low battery is coming." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Open a music with this device, then waiting for the low battery.</step_desc>
-            <expected>PASS: if low battery event display on the screen and not interrupt the music.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="system-event-sms-when-phone" execution_type="manual" purpose="Check that whether or not continue a call, when a sms is coming." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Make a call to this device.</step_desc>
-            <expected>PASS: if able to have a connection with another phone.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Sent a message to this device.</step_desc>
-            <expected>PASS: if sms event display on the screen and not interrupt the call.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="system-event-sms-when-music" execution_type="manual" purpose="Check that whether or not continue a music, when a sms is coming." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Open a local music in this device.</step_desc>
-            <expected>PASS: if the music is playing.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Send a message to this phone.</step_desc>
-            <expected>PASS: if sms event display on the screen and not interrupt the music.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="power-status-display-dim" execution_type="manual" purpose="Check if WRT is able to retrieve display resources 'display-dim'" priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-        <step order="1">
-            <step_desc>Install power-status-display-dim.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Launch the application, and click the button named "DISPLAY_DIM"</step_desc>
-            <expected>PASS: if there is a "PASS" on screen display.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="power-status-display-bright" execution_type="manual" purpose="Check if WRT is able to retrieve display resources 'display-bright'" priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-        <step order="1">
-            <step_desc>Install power-status-display-bright.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Launch the application, and click the button named "DISPLAY_BRIGHT"</step_desc>
-            <expected>PASS: if there is a "PASS" on screen display.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="power-home-suspend-cpu" execution_type="manual" purpose="Check if WRT is not consuming CPU resource when suspended by push 'home' button." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-        <step order="1">
-            <step_desc>Install power-home-suspend-cpu.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Launch the application, and click the Home button</step_desc>
-            <expected>PASS: if the cpu's utilization ratio is "0.0%".</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="power-home-background-cpu" execution_type="manual" purpose="Check if WRT is  consuming CPU resource when running background by push 'home' button." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-        <step order="1">
-            <step_desc>Install power-home-background-cpu.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Launch the application, and click the Home button</step_desc>
-            <expected>PASS: if the cpu's utilization ratio is not "0.0%".</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="power-hide-suspend-cpu" execution_type="manual" purpose="Check if WRT is not consuming CPU resource when suspended by hide application." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-        <step order="1">
-            <step_desc>Install power-hide-suspend-cpu.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Launch the application, and click the button named "Hide".</step_desc>
-            <expected>PASS: if the cpu's utilization ratio is "0.0%".</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="power-hide-background-cpu" execution_type="manual" purpose="Check if WRT is consuming CPU resource when running background by hide application." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-        <step order="1">
-            <step_desc>Install power-hide-background-cpu.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Launch the application, and click the button named "Hide".</step_desc>
-            <expected>PASS: if the cpu's utilization ratio is not "0.0%".</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="debug-web-inspector-windows7" execution_type="manual" purpose="Check if WRT supports 'web inspector' interface for widget debugging in windows7 OS." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Make sure SDK2.0 be installed to PC and launched;turn on device USB debugging mode</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>open SDK, File->New->Tizen Web Project</step_desc>
-            <expected>New Tizen Web Project window is displayed on the screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Click "Basic",then input Project name e.g. test-debugging, then click "finish"</step_desc>
-            <expected>Folder "test-debugging" appears in the "Project Explorer".</expected>
-          </step>
-          <step order="3">
-            <step_desc>Connect test device to PC</step_desc>
-            <expected>"usb connected" is displayed on the screen.</expected>
-          </step>
-          <step order="4">
-            <step_desc>Open Window->Show View -> Connection Explorer</step_desc>
-            <expected>PASS: A device imformation appears in the "Connection Explorer" of SDK.</expected>
-          </step>
-          <step order="5">
-            <step_desc>right-click on the folder "test-debugging" -> Debug as -> 1 Tizen Web Application</step_desc>
-            <expected>PASS: pops up a 'web inspector' interface for widget debugging displayed on the screen.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0390" specification="Debug Support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support 'web inspector' interface for widget debugging.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="debug-web-inspector-ubuntu" execution_type="manual" purpose="Check if WRT supports 'web inspector' interface for widget debugging in ubuntu OS." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Make sure SDK2.0 be installed to PC and launched;turn on device USB debugging mode</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>open SDK, File->New->Tizen Web Project</step_desc>
-            <expected>New Tizen Web Project window is displayed on the screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Click "Basic",then input Project name e.g. test-debugging, then click "finish"</step_desc>
-            <expected>Folder "test-debugging" appears in the "Project Explorer".</expected>
-          </step>
-          <step order="3">
-            <step_desc>Connect test device to PC</step_desc>
-            <expected>"usb connected" is displayed on the screen.</expected>
-          </step>
-          <step order="4">
-            <step_desc>Open Window->Show View -> Connection Explorer</step_desc>
-            <expected>PASS: A device imformation appears in the "Connection Explorer" of SDK.</expected>
-          </step>
-          <step order="5">
-            <step_desc>right-click on the folder "test-debugging" -> Debug as -> 1 Tizen Web Application</step_desc>
-            <expected>PASS: 'web inspector' interface for widget debugging displayed on the screen.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0390" specification="Debug Support" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support 'web inspector' interface for widget debugging.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-access-policy" execution_type="manual" purpose="Check if the WRT support W3C Widget Access Request Policy." priority="P0" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-widget-access-policy.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Click the link of "www.baidu.com".</step_desc>
-            <expected>PASS: if the HP of www.baidu.com is opened in the application successfully.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Click the link of "www.163.com".</step_desc>
-            <expected>PASS: if the HP of www.163.com is not opened in the application but opened in the default browser of the device.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Access Request Policy. </spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="url-access-ajax-resource" execution_type="manual" purpose="Check if WRT is able to Access request to resource which using ajax technology." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install url-access-ajax-resource.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Click the option "select"</step_desc>
-            <expected>PASS: if only "select" is in the option box.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Click the button "loading".</step_desc>
-            <expected>PASS: if focus is on the "loading" button.</expected>
-          </step>
-          <step order="4">
-            <step_desc>Click the option "select".</step_desc>
-            <expected>PASS: if "tom,tom2,tom3" are displayed in the option box.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Access Request Policy. </spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="url-access-multi" execution_type="manual" purpose="Check if WRT is able to Access request to multi network resource when more than 2 access elements set in config.xml." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install url-access-multi.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Click the link "http://www.baidu.com"</step_desc>
-            <expected>PASS: if "http://www.baidu.com" is opened in this widget successfully.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Click the link "http://www.neusoft.com".</step_desc>
-            <expected>PASS: if "http://www.neusoft.com" is opened in this widget successfully.</expected>
-          </step>
-          <step order="4">
-            <step_desc>Click the link "http://www.163.com".</step_desc>
-            <expected>PASS: if "http://www.163.com" is not opened in this widget but in the device browser.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Access Request Policy. </spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="url-access-multi-all" execution_type="manual" purpose="Check if WRT is able to Access request to all network resource when set in config.xml - access origin='*' " priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install url-access-multi-all.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Click the link "http://www.baidu.com"</step_desc>
-            <expected>PASS: if "http://www.baidu.com" is opened in this widget successfully.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Click the link "http://www.neusoft.com".</step_desc>
-            <expected>PASS: if "http://www.neusoft.com" is opened in this widget successfully.</expected>
-          </step>
-          <step order="4">
-            <step_desc>Click the link "http://www.163.com".</step_desc>
-            <expected>PASS: if "http://www.163.com" is opened in this widget successfully.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Access Request Policy. </spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="url-access-multi-subdomains" execution_type="manual" purpose="Check if WRT is able to Access request to subdomains network resource when set in config.xml - subdomains='true'" priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install url-access-multi-subdomains.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Click the link "http://www.baidu.com"</step_desc>
-            <expected>PASS: if "http://www.baidu.com" is opened in this widget successfully.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Click the link "http://www.baidu.com/gaoji/preferences.html"</step_desc>
-            <expected>PASS: if "http://www.baidu.com/gaoji/preferences.html" is unable to open in this widget.</expected>
-          </step>
-          <step order="4">
-            <step_desc>Click the link "http://www.neusoft.com".</step_desc>
-            <expected>PASS: if "http://www.neusoft.com" is opened in this widget successfully.</expected>
-          </step>
-          <step order="5">
-            <step_desc>Click the link "http://www.neusoft.com/cn".</step_desc>
-            <expected>PASS: if "http://www.neusoft.com/cn" is opened in this widget successfully.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Access Request Policy. </spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-uri-schemes-sms" execution_type="manual" purpose="Check if the WRT support scheme sms:// " priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-uri-schemes-sms.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Click on link "sms"</step_desc>
-            <expected>PASS: if the sms module of the device is requested.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0420" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support at least the following URI schemes: sms:// , mmsto:// , mailto://</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-uri-schemes-mmsto" execution_type="manual" purpose="Check if the WRT support scheme mmsto:// " priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-uri-schemes-mmsto.wgt.</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Click on link "mmsto"</step_desc>
-            <expected>PASS: if mms module of the device is requested.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0420" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support at least the following URI schemes: sms:// , mmsto:// , mailto://</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-uri-schemes-mailto" execution_type="manual" purpose="Check if the WRT support scheme mailto:// " priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-uri-schemes-mailto.wgt.</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Click on link "mailto"</step_desc>
-            <expected>PASS: if email module of the device is requested.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0420" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support at least the following URI schemes: sms:// , mmsto:// , mailto://</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-localization" execution_type="manual" purpose="Check if the WRT support localization  " priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Make sure the locale language is English</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-localization.wgt.</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Confirm the widget's name on screen.</step_desc>
-            <expected>PASS: if the name under the icon is "english-ol".</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0440" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support localization as defined in W3C Widget Packaging and XML Configuration.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface" execution_type="manual" purpose="Check if the WRT support W3C Widget Interface.  " priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-widget-interface.wgt.</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Touch the icon to entry the application.</step_desc>
-            <expected>PASS: if there is a green "Pass" on screen display.(widget.name=other-widget-interface)</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-uri-scheme" execution_type="manual" purpose="Check if the WRT support W3C Widget URI Scheme.  " priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-widget-uri-scheme.wgt.</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Press the button "Launch"</step_desc>
-            <expected>Pass: if there is a picture added on screen.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support Widget URI Scheme.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-alarm" execution_type="manual" purpose="Check if WRT is able to pause playing audio and hide app when a alarm is incoming." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;There are some music in the device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Create a alarm after 3 minutes.</step_desc>
-            <expected>PASS: if alarm is set successfully.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Select a music to play.</step_desc>
-            <expected>PASS: if music is paused when a alarm is incoming.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-call" execution_type="manual" purpose="Check if WRT is able to pause playing audio and hide app when a call is incoming." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Device can is able to receive a call;There are some music in the device;</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Select a music to play.</step_desc>
-            <expected>PASS: if music is playing.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Call the number with another device.</step_desc>
-            <expected>PASS: if music is paused when a call is incoming.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-priority-same" execution_type="manual" purpose="Check if WRT is able to simultaneously play two audio applications which have the same priority." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Set a alarm after 1 minute and start it.</step_desc>
-            <expected>PASS: if setting the alarm goes well.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Make a video call to the device before the alarm rings</step_desc>
-            <expected>PASS: if the conversation goes well.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Wait for the alarm rings.</step_desc>
-            <expected>PASS: if is able to hear both the conversation and alarm's voice in the same time.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-priority-higher" execution_type="manual" purpose="Check if WRT is able to pause a running audio app when a higher priority audio app is launched." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Set a alarm after 1 minute and start it.</step_desc>
-            <expected>PASS: if setting the alarm goes well.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Make a video call to this mobile, when the alarm is ringing.</step_desc>
-            <expected>PASS: if the video call stop the alarm.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-priority-lower" execution_type="manual" purpose="Check if WRT is able to continue a running audio app when a lower priority audio app is launched." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;make sure there is some music in the device</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Make a video call to this mobile.</step_desc>
-            <expected>PASS: if the alarm rings during the video call and does not interrupt the conversation.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Hold the video call and play a music.</step_desc>
-            <expected>PASS: if the music unable to play and does not interrupt the conversation.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-alarm-call" execution_type="manual" purpose="Check if WRT is able to stop a alarm when a call comes." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Device is able to receive calls.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Create a alarm after 3 minutes.</step_desc>
-            <expected>PASS: if alarm is set successfully.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Call the device when the alarm is ringing.</step_desc>
-            <expected>PASS: if the call pauses the alarm.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-alarm-notification" execution_type="manual" purpose="Check if WRT is able to play both alarm and notification when a notification is coming." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Device is able to receive call and message.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Create an alarm after 3 minutes.</step_desc>
-            <expected>PASS: if alarm is set successfully.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Send a sms to this device.</step_desc>
-            <expected>PASS: if it is able to receive the sms, both alarm and sms notification work well.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-alarm-alarm" execution_type="manual" purpose="Check if WRT is able to play both alarms when another alarm is coming." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Set an alarm after 1 minute and start it.</step_desc>
-            <expected>PASS: if setting the alarm goes well.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Set an alarm after 2 minutes and start it.</step_desc>
-            <expected>PASS: if setting the alarm goes well.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Wait for both of the alarms ring.</step_desc>
-            <expected>PASS: if two alarms ring together.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-music-call" execution_type="manual" purpose="Check if WRT is able to stop music when a call is coming." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Device is able to receive calls;there is some music in the device</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Select a music to play.</step_desc>
-            <expected>PASS: if music is playing.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Call the device when the music is playing.</step_desc>
-            <expected>PASS: if the call pauses the music.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-video-call" execution_type="manual" purpose="Check if WRT is able to stop video when a call is coming." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Device is able to receive calls;there is some video in the device</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Select a video to play.</step_desc>
-            <expected>PASS: if video is playing.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Call the device when the video is playing.</step_desc>
-            <expected>PASS: if the call pauses the video.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-video-notification" execution_type="manual" purpose="Check if WRT is able to play both notification and video when a notification comes during playing video." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Device is able to receive calls and sms;there is some video in the device</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Select a video to play.</step_desc>
-            <expected>PASS: if video is playing.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Send a message to this handset when the video is playing.</step_desc>
-            <expected>PASS: if the voice of sms and video are played in the same time.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-video-alarm" execution_type="manual" purpose="Check if WRT is able to pause the video when an alarm comes." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Device is able to receive calls and sms;there is some video in the device</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Select a video to play.</step_desc>
-            <expected>PASS: if video is playing.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Set a alarm when the video is playing.</step_desc>
-            <expected>PASS: if it is able to pause the video when an alarm comes.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-video-earjack-unplug" execution_type="manual" purpose="Check if WRT is able to pause the video when unplug earphone from earphone jack." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;there is some video in the device</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Select a video to play.</step_desc>
-            <expected>PASS: if video is playing.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Unplug earphone from earphone jack.</step_desc>
-            <expected>PASS: if it is able to pause the video when unplug earphone from earphone jack.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-call-alarm" execution_type="manual" purpose="Check if WRT is able to play both call and alarm when an alarm comes." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Device is able to receive calls.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Create an alarm after 3 minutes.</step_desc>
-            <expected>PASS: if alarm is set successfully.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Call the device before the alarm is ringing and keep the call.</step_desc>
-            <expected>PASS: if call and alarm work well together when the alarm rings.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audioaudio-policy-call-music" execution_type="manual" purpose="Check if WRT is able to continue a calling when a music is incoming." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Device is able to receive calls;there is some music in the device</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Call the device and keep the call.</step_desc>
-            <expected>PASS: if call is kept</expected>
-          </step>
-          <step order="2">
-            <step_desc>Play a music when talking on a call.</step_desc>
-            <expected>PASS: if the music is unable to be played and the call is not to be interrupted.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-call-video" execution_type="manual" purpose="Check if WRT is able to continue a calling when a video is incoming." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Device is able to receive calls;there is some video in the device</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Call the device and keep the call.</step_desc>
-            <expected>PASS: if call is kept</expected>
-          </step>
-          <step order="2">
-            <step_desc>Play a video when talking on a call.</step_desc>
-            <expected>PASS: if the video is unable to be played and the call is not to be interrupted.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-call-notification" execution_type="manual" purpose="Check if WRT is able to play both call and notification when a notification comes." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Device is able to receive calls and sms;</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Call the device and keep the call.</step_desc>
-            <expected>PASS: if call is kept</expected>
-          </step>
-          <step order="2">
-            <step_desc>Send a message to this device.</step_desc>
-            <expected>PASS: if it is able to play the voices of both call and sms notification when a message comes.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-call-earjack-unplug" execution_type="manual" purpose="Check if WRT is able to continue a call when unplug earphone from earphone jack." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Device is able to receive calls and sms;</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Call the device and keep the call.</step_desc>
-            <expected>PASS: if call is kept</expected>
-          </step>
-          <step order="2">
-            <step_desc>Unplug earphone from earphone jack.</step_desc>
-            <expected>PASS: if it is able to continue a call when  unplugging earphone from earphone jack.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-notification-notification" execution_type="manual" purpose="Check if WRT is able to play both notifications when another notification comes." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Device is able to receive calls and sms;</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Through the two other handset, send to this device a text message respectively. </step_desc>
-            <expected>PASS: if it is able to play the voice of both sms notifications.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-notification-call" execution_type="manual" purpose="Check if WRT is able to stop a notification when a call comes." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Device is able to receive calls and sms;</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Send a message to this handset.</step_desc>
-            <expected>PASS: if it is able to receive the message.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Make a call to this handset when playing the voice of sms notification.</step_desc>
-            <expected>PASS: if it is able to stop the voice of sms notification when a call comes.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-notification-alarm" execution_type="manual" purpose="Check if WRT is able to stop a notification when an alarm comes." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Device is able to receive calls and sms;</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Set an alarm.</step_desc>
-            <expected>PASS: if the alarm is set.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Send a message to this handset.</step_desc>
-            <expected>PASS: if it is able to receive the message.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Make sure the alarm rings after the sms notification start to ring.</step_desc>
-            <expected>PASS: if it is able to stop the voice of sms notification when alarm rings.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-music-notification" execution_type="manual" purpose="Check if WRT is able to play both notification and music when a notification comes." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Device is able to receive calls and sms;There are some music in the device;</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Play a music in the device.</step_desc>
-            <expected>PASS: if it is able to hear the voice of music.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Send a message to this handset.</step_desc>
-            <expected>PASS: if it is able to play the voice of both notification and music in the same time.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-music-alarm" execution_type="manual" purpose="Check if WRT is able to pause the music when an alarm comes." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;There are some music in the device;</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Play a music in the device.</step_desc>
-            <expected>PASS: if it is able to hear the voice of music.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Set an alarm when playing the music.</step_desc>
-            <expected>PASS: if it is able to pause the music when an alarm comes.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="audio-policy-music-earjack-unplug" execution_type="manual" purpose="Check if WRT is able to pause the music when unplug earphone from earphone jack." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;There are some music in the device;</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Play a music in the device.</step_desc>
-            <expected>PASS: if it is able to hear the voice of music.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Unplug earphone from earphone jack</step_desc>
-            <expected>PASS: if it is able to pause the music when unplug earphone from earphone jack.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="sys-listen-low-memory-event-60m" execution_type="manual" purpose="Check if WRT is able to notify WebKit to clear web app's resource cache and remove unused surface textures when the memory is less than 60M." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;lifecycle-load-event.wgt is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install sys-listen-low-memory-event-60m.wgt</step_desc>
-            <expected>PASS:the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Open native browser and lifecycle-load-event.wgt .</step_desc>
-            <expected>PASS: browser and application worked well .</expected>
-          </step>
-          <step order="3">
-            <step_desc>Check how many memory are there free.</step_desc>
-            <expected>PASS: displayed the number of used memory and free memory.</expected>
-          </step>
-          <step order="4">
-            <step_desc>Push the button below to make the free memory between about 40M and 60M.(e.g. When free is about 220MB then push the button "cost 170MB memory".)</step_desc>
-            <expected>PASS: displayed "cost XXX memory" on screen.</expected>
-          </step>
-          <step order="5">
-            <step_desc>Check how many memory are there free.</step_desc>
-            <expected>PASS: the free memory is between 40M and 60M.</expected>
-          </step>
-          <step order="6">
-            <step_desc>Long touch the "home" button.</step_desc>
-            <expected>PASS: the lifecycle-load-event is removed but the native browser still there.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="other" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="sys-listen-low-memory-event-40m" execution_type="manual" purpose="Check if WRT is able to notify WebKit to clear web app's resource cache and remove unused surface textures when the memory is less than 40M." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;lifecycle-load-event.wgt is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install sys-listen-low-memory-event-40m.wgt</step_desc>
-            <expected>PASS:the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Open local music and lifecycle-load-event.wgt .</step_desc>
-            <expected>PASS: music played and application worked well .</expected>
-          </step>
-          <step order="3">
-            <step_desc>Check how many memory are there free.</step_desc>
-            <expected>PASS: displayed the number of used memory and free memory.</expected>
-          </step>
-          <step order="4">
-            <step_desc>Push the button below to make the free memory is under 40M.(e.g. When free is about 200MB then push the button "cost 170MB memory".)</step_desc>
-            <expected>PASS: displayed "cost XXX memory" on screen.</expected>
-          </step>
-          <step order="5">
-            <step_desc>Check how many memory are there free.</step_desc>
-            <expected>PASS: the free memory is under 40M.</expected>
-          </step>
-          <step order="6">
-            <step_desc>Long touch the "home" button.</step_desc>
-            <expected>PASS: the lifecycle-load-event and "music" is removed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="other" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-uri-schemes-mailto-cc" execution_type="manual" purpose="Check if WRT supports schemes mail cc." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-uri-schemes-mailto-cc.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Launch the application.</step_desc>
-            <expected>PASS: if see the email with its cc account on screen display.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0440" specification="other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-uri-schemes-mailto-bcc" execution_type="manual" purpose="Check if WRT supports schemes mail bcc." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-uri-schemes-mailto-bcc.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Touch "run" button on the screen.</step_desc>
-            <expected>PASS: if see the email with its bcc account on screen display.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0440" specification="other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-uri-schemes-mailto-body" execution_type="manual" purpose="Check if WRT supports schemes mail body." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-uri-schemes-mailto-body.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Launch the application.</step_desc>
-            <expected>PASS: if see the email with body content on screen display.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0440" specification="other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-uri-schemes-mailto-groups" execution_type="manual" purpose="Check if WRT supports schemes mail groups." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-uri-schemes-mailto-groups .wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Launch the application.</step_desc>
-            <expected>PASS: if see the email with its groups account on screen display.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0440" specification="other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-uri-schemes-mailto-subject" execution_type="manual" purpose="Check if WRT supports schemes mail subject." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-uri-schemes-mailto-subject.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Launch the application.</step_desc>
-            <expected>if see the email with its subject content on screen display.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0440" specification="other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-uri-schemes-mailto-tel" execution_type="manual" purpose="Check if WRT supports schemes tel." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-uri-schemes-mailto-tel.wgt</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Launch the application.</step_desc>
-            <expected>PASS: if see the telephone call on screen display.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0420" specification="other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-author-name" execution_type="manual" purpose="Check if the WRT support W3C widget interface author name attribute." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-widget-interface-attribute.wgt.</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Touch the button "Test author".</step_desc>
-            <expected>PASS: A green "Pass" appears on the right side of the button.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-author-email" execution_type="manual" purpose="Check if the WRT support W3C widget interface author email attribute." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-widget-interface-attribute.wgt.</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Touch the button "Test authorEmail".</step_desc>
-            <expected>PASS: A green "Pass" appears on the right side of the button.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-author-href" execution_type="manual" purpose="Check if the WRT support W3C widget interface author href attribute." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-widget-interface-attribute.wgt.</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Touch the button "Test authorHref".</step_desc>
-            <expected>PASS: A green "Pass" appears on the right side of the button.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-description" execution_type="manual" purpose="Check if the WRT support W3C widget interface description attribute." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-widget-interface-attribute.wgt.</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Touch the button "Test description".</step_desc>
-            <expected>PASS: A green "Pass" appears on the right side of the button.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-short-name" execution_type="manual" purpose="Check if the WRT support W3C widget interface short name attribute." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-widget-interface-attribute.wgt.</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Touch the button "Test shortName".</step_desc>
-            <expected>PASS: A green "Pass" appears on the right side of the button.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-version" execution_type="manual" purpose="Check if the WRT support W3C widget interface version attribute." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-widget-interface-attribute.wgt.</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Touch the button "Test version".</step_desc>
-            <expected>PASS: A green "Pass" appears on the right side of the button.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-id" execution_type="manual" purpose="Check if the WRT support W3C widget interface id attribute." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-widget-interface-attribute.wgt.</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Touch the button "Test id".</step_desc>
-            <expected>PASS: A green "Pass" appears on the right side of the button.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-height" execution_type="manual" purpose="Check if the WRT support W3C widget interface height attribute." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-widget-interface-attribute.wgt.</step_desc>
-            <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Touch the button "Test height".</step_desc>
-            <expected>PASS: A green "Pass" appears on the right side of the button.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-width" execution_type="manual" purpose="Check if the WRT support W3C widget interface width attribute." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-widget-interface-attribute.wgt</step_desc>
-            <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Touch the button "Test width"</step_desc>
-            <expected>Pass: A green prompt of "Pass" appears on the right side of the button.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-preference-getitem" execution_type="manual" purpose="Check if the WRT support W3C widget interface preference getItem method." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-widget-interface-method.wgt</step_desc>
-            <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Touch the button "Test getItem('preKey')"</step_desc>
-            <expected>Pass: A green prompt of "Pass" appears on the right side of the button.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-preference-setitem" execution_type="manual" purpose="Check if the WRT support W3C widget interface preference setItem method." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-widget-interface-method.wgt</step_desc>
-            <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Change the value of "preNum" from "0"to "1" and change the value of "preString" from "b" to "a"</step_desc>
-            <expected>Pass: value changed successfully.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Push the button "Save writable item"</step_desc>
-            <expected>Pass: Message like "The method widget.preferences.setItem() launched well!" pops up on the screen.</expected>
-          </step>
-          <step order="4">
-            <step_desc>Change the value of "preNum" from "1"to "2" and change the value of "preString" from "a" to "c"</step_desc>
-            <expected>Pass: value changed successfully.</expected>
-          </step>
-          <step order="5">
-            <step_desc>Push the button "Load writable item"</step_desc>
-            <expected>Pass: the value of "preNum" became "1" and the value of "preString" became "a".</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-preference-setitem-readonly" execution_type="manual" purpose="Check if the WRT support W3C widget interface preference setItem method when preference is readonly." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-widget-interface-method.wgt</step_desc>
-            <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Push the button "Load readonly item"</step_desc>
-            <expected>Pass: Message like "licenseKey can not be changed" displayed in the textbox.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Delete the word "licenseKey" in the textbox</step_desc>
-            <expected>Pass: deleted the word successfully.</expected>
-          </step>
-          <step order="4">
-            <step_desc>Push the button "Save readonly item"</step_desc>
-            <expected>Pass: Message like "Pass, the readonly item can not be saved." pops up on the screen.</expected>
-          </step>
-          <step order="5">
-            <step_desc>Push the button "Load readonly item"</step_desc>
-            <expected>Pass: Message like "licenseKey can not be changed" displayed in the textbox.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-preference-clear" execution_type="manual" purpose="Check if the WRT support W3C widget interface preference clear method." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-widget-interface-method.wgt</step_desc>
-            <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Change the value of "preNum" from "0"to "1" and change the value of "preString" from "b" to "a"</step_desc>
-            <expected>Pass: value changed successfully.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Push the button "Save writable item"</step_desc>
-            <expected>Pass: Message like "The method widget.preferences.setItem() launched well!" pops up on the screen.</expected>
-          </step>
-          <step order="4">
-            <step_desc>Push the button "Clear writable item"</step_desc>
-            <expected>Pass: Message like "widget.preferences.clear() launched successfully!" pops up on the screen.</expected>
-          </step>
-          <step order="5">
-            <step_desc>Change the value of "preNum" from "1"to "2" and change the value of "preString" from "a" to "c"</step_desc>
-            <expected>Pass: value changed successfully.</expected>
-          </step>
-          <step order="6">
-            <step_desc>Push the button "Load writable item"</step_desc>
-            <expected>Pass: the value of "preString" and "preNum" did not change.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-preference-clear-readonly" execution_type="manual" purpose="Check if the WRT support W3C widget interface preference can not clear the readonly preference with clear method." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-widget-interface-method.wgt</step_desc>
-            <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Push the button "Load readonly item"</step_desc>
-            <expected>Pass: Message like "licenseKey can not be changed" displayed in the textbox.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Push the button "Clear writable item"</step_desc>
-            <expected>Pass: Message like "widget.preferences.clear() launched successfully!" pops up on the screen.</expected>
-          </step>
-          <step order="4">
-            <step_desc>Delete the word "licenseKey" in the textbox</step_desc>
-            <expected>Pass: deleted the word successfully.</expected>
-          </step>
-          <step order="5">
-            <step_desc>Push the button "Load readonly item"</step_desc>
-            <expected>Pass: Message like "licenseKey can not be changed" displayed in the textbox.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-preference-setitem-undefined" execution_type="manual" purpose="Check if the WRT support W3C widget interface preference setItem method when preference is undefined." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-widget-interface-method.wgt</step_desc>
-            <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Input "aaa" to "Key:" textbox, and input "111" to "Value:" textbox</step_desc>
-            <expected>Pass: input parameter successfully.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Push the button "Save undefined item"</step_desc>
-            <expected>Pass: Message like "Save succeed! key is aaa,value is 111" pops up on the screen.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-preference-getitem-undefined" execution_type="manual" purpose="Check if the WRT support W3C widget interface preference getitem method when preference is undefined." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-widget-interface-method.wgt</step_desc>
-            <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Input "aaa" to "Key:" textbox, and input "111" to "Value:" textbox</step_desc>
-            <expected>Pass: input parameter successfully.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Push the button "Save undefined item"</step_desc>
-            <expected>Pass: Message like "Save succeed! key is aaa,value is 111" pops up on the screen.</expected>
-          </step>
-          <step order="4">
-            <step_desc>Change "111" to "222" in "Value:" textbox</step_desc>
-            <expected>Pass: The parameter changed successfully.</expected>
-          </step>
-          <step order="5">
-            <step_desc>Push the button "Load undefined item"</step_desc>
-            <expected>Pass: The parameter of "Value:" textbox changed from "222" to "111".</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-preference-clear-undefined" execution_type="manual" purpose="Check if the WRT support W3C widget interface preference clear method when preference is undefined." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-widget-interface-method.wgt</step_desc>
-            <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Input "aaa" to "Key:" textbox, and input "111" to "Value:" textbox</step_desc>
-            <expected>Pass: input parameter successfully.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Push the button "Save undefined item"</step_desc>
-            <expected>Pass: Message like "Save succeed! key is aaa,value is 111" pops up on the screen.</expected>
-          </step>
-          <step order="4">
-            <step_desc>Change "111" to "222" in "Value:" textbox</step_desc>
-            <expected>Pass: The parameter of "Value:" textbox changed successfully.</expected>
-          </step>
-          <step order="5">
-            <step_desc>Push the button "Load undefined item"</step_desc>
-            <expected>Pass: The parameter of "Value:" textbox changed from "222" to "111".</expected>
-          </step>
-          <step order="6">
-            <step_desc>Push the button "Clear undefined item"</step_desc>
-            <expected>Pass: Message like "widget.preferences.clear() launched successfully!" pop up.</expected>
-          </step>
-          <step order="7">
-            <step_desc>Change "111" to "333" in "Value:" textbox</step_desc>
-            <expected>Pass: The parameter changed successfully.</expected>
-          </step>
-          <step order="8">
-            <step_desc>Push the button "Load undefined item"</step_desc>
-            <expected>Pass: The parameter of "Value:" textbox disdisplayed is null.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-localization-description" execution_type="manual" purpose="Check if the WRT support localization of description." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Make sure the locale language is English</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-localization-description.wgt</step_desc>
-            <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Open the installed widget and touch the button "description"</step_desc>
-            <expected>Pass: Message like "english description." displayed on the screen.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0440" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-localization-description-default" execution_type="manual" purpose="Check if the WRT support default localization of description." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Make sure the locale language is Chinese</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-localization-description.wgt</step_desc>
-            <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Open the installed widget and touch the button "description"</step_desc>
-            <expected>Pass: Message like "default description." displayed on the screen.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0440" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="other-localization-description-change" execution_type="manual" purpose="Check if the WRT support  localization of description when receiving platform language change event." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;Make sure the locale language is English</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install other-localization-description.wgt</step_desc>
-            <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Open the installed widget and touch the button "description"</step_desc>
-            <expected>Pass: Message like "english description." displayed on the screen.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Change the device language to "Korean"</step_desc>
-            <expected>Pass: device language is changed successfully.</expected>
-          </step>
-          <step order="4">
-            <step_desc>Close running widget other-localization-description</step_desc>
-            <expected>Pass: this widget is closed successfully.</expected>
-          </step>
-          <step order="5">
-            <step_desc>Open the installed widget again and touch the button "description"</step_desc>
-            <expected>Pass: Message like "korean description." displayed on the screen.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0440" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-     <testcase purpose="Check if the WRT support W3C DOM onplay event for audio lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-audio-onplay" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-audio-onplay is installed.According to README push the resources of testing to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-audio-onplay application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Play the music</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM onplaying event for audio lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-audio-onplaying" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-audio-onplaying is installed.According to README push the resources of testing to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-audio-onplaying application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Play the music</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM onpause event for audio lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-audio-onpause" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-audio-onpause is installed.According to README push the resources of testing to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-audio-onpause application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Play the music</step_desc>
-            <expected>Pass: if the music is played.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Pause the music</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM onended event for audio lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-audio-onended" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-audio-onended is installed.According to README push the resources of testing to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-audio-onended application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Play the music</step_desc>
-            <expected>Pass: if the music is played.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Waiting for the music play ended</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM ontimeupdate event for audio lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-audio-ontimeupdate" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-audio-ontimeupdate is installed.According to README push the resources of testing to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-audio-ontimeupdate application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Play the music</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM onvolumechange event for audio lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-audio-onvolumechange" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-audio-onvolumechange is installed.According to README push the resources of testing to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-audio-onvolumechange application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Play the music</step_desc>
-            <expected>Pass: if the music is played.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Change the volume of the music</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM ondurationchange event for audio lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-audio-ondurationchange" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-audio-ondurationchange is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-audio-ondurationchange application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM oncanplaythrough event for audio lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-audio-oncanplaythrough" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-audio-oncanplaythrough is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-audio-oncanplaythrough application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM ondragstart event of canvas lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-canvas-mouse-ondragstart" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-canvas-mouse-ondragstart is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-canvas-mouse-ondragstart application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and a red circle displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Put the red circle drag-and-drop to rectangular</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM ondrop event of canvas lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-canvas-mouse-ondrop" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-canvas-mouse-ondrop is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-canvas-mouse-ondrop application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and a red circle displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Put the red circle drag-and-drop to rectangular</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM ondragover event of canvas lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-canvas-mouse-ondragover" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-canvas-mouse-ondragover is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-canvas-mouse-ondragover application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and a red circle displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Put the red circle drag-and-drop to rectangular</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM ondragleave event of canvas lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-canvas-mouse-ondragleave" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-canvas-mouse-ondragleave is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-canvas-mouse-ondragleave application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and a red circle displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Put the red circle drag-and-drop to rectangular</step_desc>
-            <expected>Pass: if the red circle in the rectangular inside.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Try put the red circle drag-and-drop to the initial position</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM ondragenter event of canvas lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-canvas-mouse-ondragenter" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-canvas-mouse-ondragenter is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-canvas-mouse-ondragenter application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and a red circle displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Put the red circle drag-and-drop to rectangular</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM ondragend event of canvas lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-canvas-mouse-ondragend" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-canvas-mouse-ondragend is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-canvas-mouse-ondragend application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and a red circle displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Put the red circle drag-and-drop to rectangular</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM ondrag event of canvas lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-canvas-mouse-ondrag" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-canvas-mouse-ondrag is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-canvas-mouse-ondrag application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and a red circle displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Put the red circle drag-and-drop to rectangular</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM ondragstart event of div lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-div-mouse-ondragstart" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-div-mouse-ondragstart is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-div-mouse-ondragstart application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and the selected picture displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Put the picture drag-and-drop to rectangular</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM ondrop event of div lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-div-mouse-ondrop" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-div-mouse-ondrop is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-div-mouse-ondrop application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and the selected picture displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Put the picture drag-and-drop to rectangular</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM ondragover event of div lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-div-mouse-ondragover" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-div-mouse-ondragover is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-div-mouse-ondragover application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and the selected picture displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Put the picture drag-and-drop to rectangular</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM ondragleave event of div lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-div-mouse-ondragleave" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-div-mouse-ondragleave is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-div-mouse-ondragleave application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and the selected picture displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Put the picture drag-and-drop to rectangular</step_desc>
-            <expected>Pass: if the picture is in the rectangular inside.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Try put the picture drag-and-drop to rectangular outside</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM ondragenter event of div lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-div-mouse-ondragenter" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-div-mouse-ondragenter is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-div-mouse-ondragenter application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and the selected picture displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Put the picture drag-and-drop to rectangular</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM ondragend event of div lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-div-mouse-ondragend" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-div-mouse-ondragend is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-div-mouse-ondragend application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and the selected picture displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Put the picture drag-and-drop to rectangular</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM ondrag event of div lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-div-mouse-ondrag" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-div-mouse-ondrag is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-div-mouse-ondrag application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and the selected picture displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Put the picture drag-and-drop to rectangular</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM onclick event of details lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-details-onclick" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-details-onclick is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-details-onclick application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and "title" is displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Click the "title"</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM onclick event of footer lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-footer-onclick" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-footer-onclick is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-footer-onclick application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and "This is footer." is displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Click the "This is footer."</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM onclick event of mark lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-mark-onclick" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-mark-onclick is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-mark-onclick application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and "mark test." is displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Click the highlight "mark"</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM onclick event of ruby lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-ruby-onclick" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-ruby-onclick is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-ruby-onclick application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and "ruby test." is displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Click the "ruby test."</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM onclick event of rt lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-rt-onclick" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-rt-onclick is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-rt-onclick application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and "['ru:bi]" is displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Click the "['ru:bi]"</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM onfocus event of text input." component="Web/Runtime/WebApplicationRuntime" id="dom-events-text-onfocus" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-text-onfocus is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-text-onfocus application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and button "ClickMe" is displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Click the "ClickMe" textbox</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM onblur event of text input." component="Web/Runtime/WebApplicationRuntime" id="dom-events-button-onblur" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-text-onblur is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-text-onblur application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully , textbox "ClickMe" and textbox "ClickMe2" are displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Click the "ClickMe" textbox then click the "ClickMe2" textbox</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM onchange event of select lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-select-onchange" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-select-onchange is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-select-onchange application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and the "Tom" is displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Change the "Tom" to "Kevin"</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM onfocus event of select lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-select-onfocus" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-select-onfocus is installed.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-select-onfocus application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and the "Tom" is displayed.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Change the "Tom" to "Kevin"</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM onplay event for video lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-video-onplay" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-video-onplay is installed.According to README push the resources of testing to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-video-onplay application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Play the music</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM onplaying event for video lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-video-onplaying" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-video-onplaying is installed.According to README push the resources of testing to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-video-onplaying application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Play the music</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM onpause event for video lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-video-onpause" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-video-onpause is installed.According to README push the resources of testing to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-video-onpause application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Play the music</step_desc>
-            <expected>Pass: if the music is played.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Pause the music</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM onended event for video lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-video-onended" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-video-onended is installed.According to README push the resources of testing to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-video-onended application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Play the music</step_desc>
-            <expected>Pass: if the music is played.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Waiting for the music play ended</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM ontimeupdate event for video lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-video-ontimeupdate" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-video-ontimeupdate is installed.According to README push the resources of testing to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-video-ontimeupdate application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Play the music</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM onvolumechange event for video lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-video-onvolumechange" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-video-onvolumechange is installed.According to README push the resources of testing to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-video-onvolumechange application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Play the music</step_desc>
-            <expected>Pass: if the music is played.</expected>
-          </step>
-          <step order="3">
-            <step_desc>Change the volume of the music</step_desc>
-            <expected>Pass: if the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM ondurationchange event for video lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-video-ondurationchange" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-video-ondurationchange is installed.According to README push the resources of testing to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-video-ondurationchange application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if the WRT support W3C DOM oncanplaythrough event for video lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-video-oncanplaythrough" execution_type="manual" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure dom-events-video-oncanplaythrough is installed.According to README push the resources of testing to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the dom-events-video-oncanplaythrough application</step_desc>
-            <expected>Pass: if the widget application can be launched successfully and the blue "Pass" is displayed.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase purpose="Check if WRT can not access to the resourse internal of the widget When widget uri scheme is 'widg'" type="user_experience" status="approved" component="Web/Runtime/WebApplicationRuntime" execution_type="manual" priority="P3" id="other-uri-scheme-invalid">
-      <description>
-         <pre_condition>Make sure the other-uri-scheme-invalid.wgt is installed.</pre_condition >
-            <post_condition/>
-              <steps>
-                 <step order="1">
-                     <step_desc>Launch other-uri-scheme-invalid.wgt</step_desc>
-                     <expected>The widget application be launched.</expected>
-                 </step>
-                 <step order="2">
-                   <step_desc>Press the button "Launch"</step_desc>
-                   <expected>Pass: if the pictures can not be displayed on the screen.</expected>
-                 </step>
-             </steps>
-         <test_script_entry test_script_expected_result="0"></test_script_entry>
-      </description>
-    <specs>
-      <spec>
-       <spec_assertion usage="true" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications" />
-       <spec_url></spec_url>
-       <spec_statement>TBD</spec_statement>
-      </spec>
-    </specs>
-   </testcase>
-    <testcase purpose="Check if WRT not allow to access to the resourse of the widget When the origin of url is being determined a invalid widget URI" type="user_experience" status="approved" component="Web/Runtime/WebApplicationRuntime" execution_type="manual" priority="P3" id="other-uri-invalid">
-      <description>
-              <pre_condition>Make sure the other-uri-invalid.wgt is installed</pre_condition >
-              <post_condition />
-              <steps>
-                 <step order="1">
-                     <step_desc>Launch other-uri-invalid.wgt</step_desc>
-                     <expected>The widget application be launched.</expected>
-                 </step>
-                 <step order="2">
-                   <step_desc>Press the button "Launch"</step_desc>
-                   <expected>Pass: if the pictures can not be displayed on the screen.</expected>
-                 </step>
-              </steps>
-                 <test_script_entry test_script_expected_result="0"></test_script_entry>
-      </description>
-    <specs>
-      <spec>
-       <spec_assertion usage="true" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications" />
-       <spec_url></spec_url>
-       <spec_statement>TBD</spec_statement>
-      </spec>
-    </specs>
-    </testcase>
-    <testcase purpose="Check if WRT supports the widget uri component : hash" type="user_experience" status="approved" component="Web/Runtime/WebApplicationRuntime" execution_type="manual" priority="P3" id="other-uri-hash">
-      <description>
-              <pre_condition>Make sure the other-uri-hash.wgt is installed</pre_condition >
-              <post_condition />
-              <steps>
-                 <step order="1">
-                     <step_desc>Launch other-uri-hash.wgt</step_desc>
-                     <expected>The widget application be launched.</expected>
-                 </step>
-                 <step order="2">
-                   <step_desc>Press the button "Launch"</step_desc>
-                   <expected>Pass: if turn to another page,then the screen shows "Pass".</expected>
-                 </step>
-              </steps>
-                 <test_script_entry test_script_expected_result="0"></test_script_entry>
-      </description>
-    <specs>
-      <spec>
-       <spec_assertion usage="true" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications" />
-       <spec_url></spec_url>
-       <spec_statement>TBD</spec_statement>
-      </spec>
-    </specs>
-    </testcase>
-    <testcase purpose="Check if WRT allow to access to the index file of the widget" type="user_experience" status="approved" component="Web/Runtime/WebApplicationRuntime" execution_type="manual" priority="P3" id="other-uri-index">
-      <description>
-              <pre_condition>Make sure the other-uri-index.wgt is installed successfully</pre_condition>
-              <post_condition />
-              <steps>
-                 <step order="1">
-                     <step_desc>Launch other-uri-index.wgt</step_desc>
-                     <expected>The widget application be launched.</expected>
-                 </step>
-                 <step order="2">
-                   <step_desc>Press the button "Launch"</step_desc>
-                   <expected>Pass: if turn to another page.</expected>
-                 </step>
-              </steps>
-                 <test_script_entry test_script_expected_result="0"></test_script_entry>
-      </description>
-    <specs>
-      <spec>
-       <spec_assertion usage="true" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications" />
-       <spec_url></spec_url>
-       <spec_statement>TBD</spec_statement>
-      </spec>
-    </specs>
-    </testcase>
-    <testcase purpose="Check if WRT supports the widget uri component : port" type="user_experience" status="approved" component="Web/Runtime/WebApplicationRuntime" execution_type="manual" priority="P3" id="other-uri-port">
-      <description>
-              <pre_condition>Make sure other-uri-port.wgt is installed</pre_condition>
-              <post_condition />
-              <steps>
-                 <step order="1">
-                     <step_desc>Launch other-uri-port.wgt</step_desc>
-                     <expected>The widget application be launched.</expected>
-                 </step>
-                 <step order="2">
-                   <step_desc>Press the button "Launch"</step_desc>
-                   <expected>Pass: if turn to another page,then the screen shows "Pass".</expected>
-                 </step>
-              </steps>
-                 <test_script_entry test_script_expected_result="0"></test_script_entry>
-      </description>
-    <specs>
-      <spec>
-       <spec_assertion usage="true" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications" />
-       <spec_url></spec_url>
-       <spec_statement>TBD</spec_statement>
-      </spec>
-    </specs>
-    </testcase>
-    <testcase purpose="Check if WRT supports the widget uri component : scheme" type="user_experience" status="approved" component="Web/Runtime/WebApplicationRuntime" execution_type="manual" priority="P3" id="other-uri-scheme">
-      <description>
-        <pre_condition></pre_condition>
-           <post_condition></post_condition>
-              <steps>
-                 <step order="1">
-                     <step_desc>Install other-uri-scheme.wgt</step_desc>
-                     <expected>Widget application is able to install,then the icon is displayed on screen.</expected>
-                 </step>
-                 <step order="2">
-                     <step_desc>Launch other-uri-scheme.wgt</step_desc>
-                     <expected>The widget application be launched.</expected>
-                 </step>
-                 <step order="3">
-                   <step_desc>Press the button "Launch"</step_desc>
-                   <expected>Pass: if turn to another page,then the screen shows "Pass".</expected>
-                 </step>
-              </steps>
-           <test_script_entry test_script_expected_result="0"></test_script_entry>
-      </description>
-    <specs>
-      <spec>
-       <spec_assertion usage="true" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications" />
-       <spec_url></spec_url>
-       <spec_statement>TBD</spec_statement>
-      </spec>
-    </specs>
-        </testcase>
-    <testcase purpose="Check if WRT can not access to the resourse internal of the widget When widget uri scheme is null." type="user_experience" status="approved" component="Web/Runtime/WebApplicationRuntime" execution_type="manual" priority="P3" id="other-uri-scheme-null">
-      <description>
-        <pre_condition></pre_condition>
-           <post_condition></post_condition>
-              <steps>
-                 <step order="1">
-                     <step_desc>Install other-uri-scheme-null.wgt</step_desc>
-                     <expected>Widget application is able to install,then the icon is displayed on screen.</expected>
-                 </step>
-                 <step order="2">
-                     <step_desc>Launch other-uri-scheme-null.wgt</step_desc>
-                     <expected>The widget application be launched.</expected>
-                 </step>
-                 <step order="3">
-                   <step_desc>Press the button "Launch"</step_desc>
-                   <expected>Pass: if the pictures can not be displayed on the screen.</expected>
-                 </step>
-              </steps>
-           <test_script_entry test_script_expected_result="0"></test_script_entry>
-      </description>
-    <specs>
-      <spec>
-       <spec_assertion usage="true" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications" />
-       <spec_url></spec_url>
-       <spec_statement>TBD</spec_statement>
-      </spec>
-    </specs>
-   </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="css-animation-background-unable" execution_type="manual" purpose="Check if WRT is able to suspend rendering CSS animation when Web Application enters invisible state while background support is unable" priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install css-animation-background-unable.wgt</step_desc>
-            <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Launch the application</step_desc>
-            <expected>Pass: if the application is launched successfully.</expected>
-          </step>
-          <step order="3">
-            <step_desc>When the moving block turn to yellow color (the right-side of the block arrived in 300px), press the "Home" button on device</step_desc>
-            <expected>It turn to  home screen.</expected>
-          </step>
-          <step order="4">
-            <step_desc>Wait for more than 10 seconds then turn back to this page by click the icon on the home screen</step_desc>
-            <expected>the block continuously moving from 300px to 500px and at the same time the color changing from yellow to blue.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0320" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST suspend JavaScript execution and rendering (including CSS animations) when Web Application enters invisible state, unless the author explicitly declared the Web Application to be a background service in the configuration document</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="css-animation-background-enable" execution_type="manual" purpose="Check if WRT is able to continue render CSS animation when Web Application enters invisible state while background support is enabled" priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install css-animation-background-enable.wgt</step_desc>
-            <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Launch the application</step_desc>
-            <expected>Pass: if the application is launched successfully.</expected>
-          </step>
-          <step order="3">
-            <step_desc>When the moving block turn to yellow color (the right-side of the block arrived in 300px), press the "Home" button on device</step_desc>
-            <expected>It turn to  home screen.</expected>
-          </step>
-          <step order="4">
-            <step_desc>Wait for more than 10 seconds then turn back to this page by click the icon on the home screen"</step_desc>
-            <expected>the block has turned into bule color and the right-side of the block arrived at 500px.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0340" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST NOT suspend Web Application's execution if the author explicitly declared the Web Application to be a background service in the configuration document.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="css-animation-background-default" execution_type="manual" purpose="Check if WRT is able to suspend rendering CSS animation when Web Application enters invisible state and resume rendering when enters visible while background support is setted as default" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure WRT is installed;</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Install css-animation-background-default.wgt</step_desc>
-            <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Launch the application</step_desc>
-            <expected>Pass: if the application is launched successfully.</expected>
-          </step>
-          <step order="3">
-            <step_desc>When the moving block turn to yellow color (the right-side of the block arrived in 300px), press the "Home" button on device</step_desc>
-            <expected>It turn to  home screen.</expected>
-          </step>
-          <step order="4">
-            <step_desc>Wait for more than 10 seconds then turn back to this page by click the icon on the home screen</step_desc>
-            <expected>the block continuously moving from 300px to 500px and at the same time the color changing from yellow to blue.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0330" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>For applications whose execution was suspended the WRT MUST resume JavaScript execution and rendering (including CSS animations) when Web Application enters visible state.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-app-id-null" execution_type="manual" purpose="Check if WRT not support Web Application URI when the app-id is empty" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure app-uri-scheme-app-id-null.wgt is installed and according to README pushed the image to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the app-uri-scheme-app-id-null application</step_desc>
-            <expected>Pass: if you can not see the selected picture on the screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Uninstalled app-uri-scheme-app-id-null.wgt</step_desc>
-            <expected>Pass: The application can be uninstalled successfully.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0341" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support Web Application URI (WebAppURI) as per following rules.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-app-id-not-null" execution_type="manual" purpose="Check if WRT support Web Application URI when the app-id is not empty" priority="P0" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure app-uri-scheme-app-id-not-null.wgt is installed.WRT is installed and according to README pushed the image to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the app-uri-scheme-app-id-not-null application</step_desc>
-            <expected>Pass ï¼š If you can see the selected picture on the screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Uninstalled app-uri-scheme-app-id-not-null.wgt</step_desc>
-            <expected>Pass: The application can be uninstalled successfully.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0341" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support Web Application URI (WebAppURI) as per following rules.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-scheme-is-null" execution_type="manual" purpose="Check if WRT not support Web Application URI when the scheme is empty" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure app-uri-scheme-scheme-is-null.wgt is installed.Make sure WRT is installed and according to README pushed the image to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the app-uri-scheme-scheme-is-null application</step_desc>
-            <expected>Pass: if you can not see the selected picture on the screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Uninstalled app-uri-scheme-scheme-is-null.wgt</step_desc>
-            <expected>Pass: The application can be uninstalled successfully.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0341" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement>The WRT MUST support Web Application URI (WebAppURI) as per following rules.</spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-for-img" execution_type="manual" purpose="Check if WRT support HTML document of which is a image" priority="P0" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure app-uri-scheme-for-img.wgt is installed.Make sure WRT is installed and according to README pushed the image to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the app-uri-scheme-for-img application</step_desc>
-            <expected>Pass: if you can see the selected picture on the screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Uninstalled app-uri-scheme-for-img.wgt</step_desc>
-            <expected>Pass: The application can be uninstalled successfully.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0341" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-scheme-is-wrongful" execution_type="manual" purpose="Check if WRT not support Web Application URI when the Scheme is invalid" priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure app-uri-scheme-scheme-is-wrongful.wgt is installed.Make sure WRT is installed and according to README pushed the image to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the app-uri-scheme-scheme-is-wrongful application</step_desc>
-            <expected>Pass: if you can not see the selected picture on the screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Uninstalled app-uri-scheme-scheme-is-wrongful.wgt</step_desc>
-            <expected>Pass: The application can be uninstalled successfully.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0341" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-for-root-origin" execution_type="manual" purpose="Check if WRT treat the WebAppURI pointing to the WebApplication package root directory as the document's origin." priority="P0" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure app-uri-scheme-for-root-origin.wgt is installed.Make sure WRT is installed and according to README pushed the image to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the app-uri-scheme-for-root-origin application</step_desc>
-            <expected>Pass: if you can see the selected picture on the screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Uninstalled app-uri-scheme-for-root-origin.wgt</step_desc>
-            <expected>Pass: The application can be uninstalled successfully.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0342" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-root-origin-wrongful" execution_type="manual" purpose="Check if WRT can not support document's origin when WebApplication package root directory is invalid" priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure app-uri-scheme-for-wrong-package.wgt has been installed and according to README pushed the image to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the app-uri-scheme-for-wrong-package application</step_desc>
-            <expected>Pass: if you can not see the selected picture on the screen.</expected>
-          </step>
-        </steps>
-        <step order="2">
-            <step_desc>Uninstalled app-uri-scheme-for-wrong-package.wgt</step_desc>
-            <expected>Pass: The application can be uninstalled successfully.</expected>
-          </step>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0342" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-for-dom-properties-img" execution_type="manual" purpose="Check if WRT support DOM objects' image properties" priority="P0" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure app-uri-scheme-for-dom-properties.wgt has been installed and according to README pushed the image to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the app-uri-scheme-for-dom-properties application</step_desc>
-            <expected>Pass: if you see a message on the screen(Pass : When you click me you will see "True").</expected>
-          </step>
-          <step order="2">
-            <step_desc>Touch the message (Pass : When you click me you will see "True")</step_desc>
-            <expected>Pass: if you can see the message(Pass : true).</expected>
-          </step>
-          <step order="3">
-            <step_desc>Uninstalled app-uri-scheme-for-dom-properties.wgt</step_desc>
-            <expected>Pass: The application can be uninstalled successfully.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0343" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-for-dom-properties-audio" execution_type="manual" purpose="Check if WRT support DOM objects' audio properties." priority="P0" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure app-uri-scheme-for-dom-properties.wgt is installed and according to README pushed the music to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the app-uri-scheme-for-dom-properties application</step_desc>
-            <expected>Pass: if you see a message on the screen(Pass : When you click me you will see "True").</expected>
-          </step>
-          <step order="2">
-            <step_desc>Touch in front of the audio message(Pass : When you click me you will see "True")</step_desc>
-            <expected>Pass: if you can see the message(Pass : true).</expected>
-          </step>
-          <step order="3">
-            <step_desc>Uninstalled app-uri-scheme-for-dom-properties.wgt</step_desc>
-            <expected>Pass: The application can be uninstalled successfully.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0343" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-for-dom-properties-textarea" execution_type="manual" purpose="Check if WRT support DOM objects' textarea properties." priority="P0" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure app-uri-scheme-for-dom-properties.wgt is installed and according to README pushed the image to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the app-uri-scheme-for-dom-properties application</step_desc>
-            <expected>Pass: if you see a textarea name is "Pass : when you are change me, you will see "True"" on the screen(Pass : When you click me you will see "True").</expected>
-          </step>
-          <step order="2">
-            <step_desc>Change the textarea value of the object</step_desc>
-            <expected>Pass: if you can see the message(Pass : true).</expected>
-          </step>
-          <step order="3">
-            <step_desc>Uninstalled app-uri-scheme-for-dom-properties.wgt</step_desc>
-            <expected>Pass: The application can be uninstalled successfully.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0343" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-for-dom-properties-button" execution_type="manual" purpose="Check if WRT support DOM objects' Button properties." priority="P0" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure app-uri-scheme-for-dom-properties.wgt is installed and WRT is installed and according to README pushed the image to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the app-uri-scheme-for-dom-properties application</step_desc>
-            <expected>Pass: if you see a button name is "Pass : When you click me you will see "True" " on the screen(Pass : When you click me you will see "True").</expected>
-          </step>
-          <step order="2">
-            <step_desc>Click the Button(Pass : When you click me you will see "True")</step_desc>
-            <expected>Pass: if you can see the message(Pass : True).</expected>
-          </step>
-          <step order="3">
-            <step_desc>Uninstalled app-uri-scheme-for-dom-properties.wgt</step_desc>
-            <expected>Pass: The application can be uninstalled successfully.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0343" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-for-dom-properties-location" execution_type="manual" purpose="Check if WRT support DOM objects' Location properties." priority="P0" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure app-uri-scheme-for-dom-properties.wgt is installed and WRT is installed and according to README pushed the image to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the app-uri-scheme-for-dom-properties application</step_desc>
-            <expected>Pass: if you can see a message the thing that is "Pass : When you see me !".</expected>
-          </step>
-          <step order="2">
-            <step_desc>Uninstalled app-uri-scheme-for-dom-properties.wgt</step_desc>
-            <expected>Pass: The application can be uninstalled successfully.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0343" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-for-package-rightful" execution_type="manual" purpose="Check if WRT support the requested resource using WebAppURI is located within the requesting WebApplication's package." priority="P0" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure app-uri-scheme-for-package.wgt is installed and according to README pushed the image to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the app-uri-scheme-for-package application</step_desc>
-            <expected>Pass: if you see the selected picture on the screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Uninstalled app-uri-scheme-for-package.wgt</step_desc>
-            <expected>Pass: The application can be uninstalled successfully.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0344" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-for-package-wrongful" execution_type="manual" purpose="Check if WRT not support the requested resource using WebAppURI is break out of the package." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure app-uri-scheme-for-wrong-package.wgt is installed and according to README pushed the image to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the app-uri-scheme-for-wrong-package application</step_desc>
-            <expected>Pass: if you can not see a image on the screen.</expected>
-          </step>
+  <suite name="tct-rt02-wrt-tests">
+    <set name="WebApplicationRuntime">
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="lifecycle-load-event" execution_type="manual" purpose="Check if WRT supports W3C DOM load event" priority="P0" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install lifecycle-load-event.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch the application.</step_desc>
+              <expected>PASS: if there is a green "PASS" on screen display.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C DOM load, unload and Page Visibility events for all pages of a Web Application.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="lifecycle-unload-event" execution_type="manual" purpose="Check if WRT supports W3C DOM unload event." priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install lifecycle-unload-event.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Touch "run" button on screen.</step_desc>
+              <expected>PASS: if there is a correct alert("unload event success!").</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C DOM load, unload and Page Visibility events for all pages of a Web Application.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="lifecycle-page-visibility-visibilitychange" execution_type="manual" purpose="Check if WRT supports W3C DOM page visibility event visibilitychange" priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed;</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install lifecycle-page-visibility-visibilitychange.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch the application.</step_desc>
+              <expected>PASS: if the application is successfully launched with page visibility changed from "visible" to "hiden"</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C DOM load, unload and Page Visibility events for all pages of a Web Application.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="lifecycle-suspend-javascript" execution_type="manual" purpose="Check if WRT is able to suspend JavaScript execution and rendering when Web Application enters invisible state" priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed;</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install lifecycle-suspend-javascript .wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch the application.</step_desc>
+              <expected>PASS: if it is successfully launched.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Enter invisible state and return back visible state</step_desc>
+              <expected>PASS: if there is a green "PASS" on screen display.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0320" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST suspend JavaScript execution and rendering (including CSS animations) when Web Application enters invisible state, unless the author explicitly declared the Web Application to be a background service in the configuration document</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="lifecycle-resume-javascript" execution_type="manual" purpose="Check if WRT is able to resume JavaScript execution and rendering when Web Application enters visible state" priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed;</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install lifecycle-resume-javascript.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch the application.</step_desc>
+              <expected>PASS: if it is successfully launched.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Enter invisible state and return back visible state</step_desc>
+              <expected>PASS: if there is a green "PASS" on screen display.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0330" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>For applications whose execution was suspended the WRT MUST resume JavaScript execution and rendering (including CSS animations) when Web Application enters visible state.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="lifecycle-background-service" execution_type="manual" purpose="Check if Web Application is explicitly declared as a background service in the configuration document, then the WRT should continue JavaScript execution and rendering, even when the Web Application enters invisible state." priority="P0" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed;</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install lifecycle-background-service.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch the application.</step_desc>
+              <expected>PASS: if it is successfully launched.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Enter invisible state and return back visible state</step_desc>
+              <expected>PASS: if there is a green "PASS" on screen display.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0340" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST NOT suspend Web Application's execution if the author explicitly declared the Web Application to be a background service in the configuration document.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="lifecycle-launch-installed-app" execution_type="manual" purpose="Check if WRT is able to launch an installed application" priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed;The lifecycle-hide-running-app.wgt has been installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install lifecycle-launch-installed-app.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears in screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Open the widget and touch the "Launch" button</step_desc>
+              <expected>PASS: if lifecycle-hide-running-app application is launched and see the word "Hello, hidding application".</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0320" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="lifecycle-launch-removed-app" execution_type="manual" purpose="Check if WRT is unable to launch an removed application" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed;lifecycle-hide-running-app.wgt has been installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Uninstall lifecycle-hide-running-app.wgt</step_desc>
+              <expected>PASS: if uninstall the widget successfully.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Install lifecycle-launch-removed-app.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Touch the "Launch" button.</step_desc>
+              <expected>PASS: if there is no response.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0320" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="lifecycle-exit-running-app" execution_type="manual" purpose="Check if WRT is able to exit a running application safely." priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install lifecycle-exit-running-app.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Open this widget and touch the "Exit" button.</step_desc>
+              <expected>PASS: if this widget is closed.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Check the application running list</step_desc>
+              <expected>PASS: if "lifecycle-exit-running-app is not in the running list".</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0320" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="lifecycle-hide-running-app" execution_type="manual" purpose="Check if WRT is able to change a web app to background, and keep running." priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install lifecycle-hide-running-app.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Touch the "Hide" button.</step_desc>
+              <expected>PASS: if this widget will exit.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Check the application running list.</step_desc>
+              <expected>PASS: if "lifecycle-hide-running-app" is in the running list.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0340" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="sys-launch-service-app" execution_type="manual" purpose="Check if WRT is able to launch service application." priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install sys-launch-service-app.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Open the widget and click the "Launch"</step_desc>
+              <expected>PASS: if the camera is launched.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="sys-launch-service-video-player" execution_type="manual" purpose="Check if WRT is able to launch video application." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install sys-launch-service-video-player.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Open the widget and click the "Launch"</step_desc>
+              <expected>PASS: if the video player is launched.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="sys-launch-service-music-player" execution_type="manual" purpose="Check if WRT is able to launch music application." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install sys-launch-service-music-player.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Open the widget and click the "Launch"</step_desc>
+              <expected>PASS: if the music player is launched.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="sys-launch-service-image-viewer" execution_type="manual" purpose="Check if WRT is able to launch image viewer application." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install sys-launch-service-image-viewer.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Open the widget and click the "Launch"</step_desc>
+              <expected>PASS: if the image viewer is launched.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="sys-launch-service-camera" execution_type="manual" purpose="Check if WRT is able to launch camera application." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install sys-launch-service-camera.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Open the widget and click the "Launch"</step_desc>
+              <expected>PASS: if the camera is launched.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="sys-launch-service-email" execution_type="manual" purpose="Check if WRT is able to launch email application." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install sys-launch-service-email.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Open the widget and click the "Launch"</step_desc>
+              <expected>PASS: if the email application is launched.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="sys-launch-service-gallery-pick" execution_type="manual" purpose="Check if WRT is able to pick an item from the gallery." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install sys-launch-service-gallery-pick.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Open the widget and click the "Launch"</step_desc>
+              <expected>PASS: if the gallery application is launched.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="sys-launch-service-gallery-show" execution_type="manual" purpose="Check if WRT is able to show the gallery." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install sys-launch-service-gallery-show.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Open the widget and click the "Launch"</step_desc>
+              <expected>PASS: if the gallery application is launched.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="sys-launch-service-message" execution_type="manual" purpose="Check if WRT is able to launch message application." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install sys-launch-service-message.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Open the widget and click the "Launch"</step_desc>
+              <expected>PASS: if the message application is launched.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="power-status-display-dim" execution_type="manual" purpose="Check if WRT is able to retrieve display resources 'display-dim'" priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install power-status-display-dim.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch the application, and click the button named "DISPLAY_DIM"</step_desc>
+              <expected>PASS: if there is a "PASS" on screen display.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="power-status-display-bright" execution_type="manual" purpose="Check if WRT is able to retrieve display resources 'display-bright'" priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install power-status-display-bright.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch the application, and click the button named "DISPLAY_BRIGHT"</step_desc>
+              <expected>PASS: if there is a "PASS" on screen display.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="power-home-suspend-cpu" execution_type="manual" purpose="Check if WRT is not consuming CPU resource when suspended by push 'home' button." priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install power-home-suspend-cpu.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch the application, and click the Home button</step_desc>
+              <expected>PASS: if the cpu's utilization ratio is "0.0%".</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="power-home-background-cpu" execution_type="manual" purpose="Check if WRT is consuming CPU resource when running background by push 'home' button." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install power-home-background-cpu.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch the application, and click the Home button</step_desc>
+              <expected>PASS: if the cpu's utilization ratio is not "0.0%".</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="power-hide-suspend-cpu" execution_type="manual" purpose="Check if WRT is not consuming CPU resource when suspended by hide application." priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install power-hide-suspend-cpu.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch the application, and click the button named "Hide".</step_desc>
+              <expected>PASS: if the cpu's utilization ratio is "0.0%".</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="power-hide-background-cpu" execution_type="manual" purpose="Check if WRT is consuming CPU resource when running background by hide application." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install power-hide-background-cpu.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch the application, and click the button named "Hide".</step_desc>
+              <expected>PASS: if the cpu's utilization ratio is not "0.0%".</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0360" specification="Web API support" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="debug-web-inspector-windows7" execution_type="manual" purpose="Check if WRT supports 'web inspector' interface for widget debugging in windows7 OS." priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed;Make sure SDK2.0 be installed to PC and launched;turn on device USB debugging mode</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>open SDK, File-&gt;New-&gt;Tizen Web Project</step_desc>
+              <expected>New Tizen Web Project window is displayed on the screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Click "Basic",then input Project name e.g. test-debugging, then click "finish"</step_desc>
+              <expected>Folder "test-debugging" appears in the "Project Explorer".</expected>
+            </step>
+            <step order="3">
+              <step_desc>Connect test device to PC</step_desc>
+              <expected>"usb connected" is displayed on the screen.</expected>
+            </step>
+            <step order="4">
+              <step_desc>Open Window-&gt;Show View -&gt; Connection Explorer</step_desc>
+              <expected>PASS: A device imformation appears in the "Connection Explorer" of SDK.</expected>
+            </step>
+            <step order="5">
+              <step_desc>right-click on the folder "test-debugging" -&gt; Debug as -&gt; 1 Tizen Web Application</step_desc>
+              <expected>PASS: pops up a 'web inspector' interface for widget debugging displayed on the screen.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0390" specification="Debug Support" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support 'web inspector' interface for widget debugging.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="debug-web-inspector-ubuntu" execution_type="manual" purpose="Check if WRT supports 'web inspector' interface for widget debugging in ubuntu OS." priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed;Make sure SDK2.0 be installed to PC and launched;turn on device USB debugging mode</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>open SDK, File-&gt;New-&gt;Tizen Web Project</step_desc>
+              <expected>New Tizen Web Project window is displayed on the screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Click "Basic",then input Project name e.g. test-debugging, then click "finish"</step_desc>
+              <expected>Folder "test-debugging" appears in the "Project Explorer".</expected>
+            </step>
+            <step order="3">
+              <step_desc>Connect test device to PC</step_desc>
+              <expected>"usb connected" is displayed on the screen.</expected>
+            </step>
+            <step order="4">
+              <step_desc>Open Window-&gt;Show View -&gt; Connection Explorer</step_desc>
+              <expected>PASS: A device imformation appears in the "Connection Explorer" of SDK.</expected>
+            </step>
+            <step order="5">
+              <step_desc>right-click on the folder "test-debugging" -&gt; Debug as -&gt; 1 Tizen Web Application</step_desc>
+              <expected>PASS: 'web inspector' interface for widget debugging displayed on the screen.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0390" specification="Debug Support" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support 'web inspector' interface for widget debugging.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-access-policy" execution_type="manual" purpose="Check if the WRT support W3C Widget Access Request Policy." priority="P0" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-widget-access-policy.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Click the link of "www.baidu.com".</step_desc>
+              <expected>PASS: if the HP of www.baidu.com is opened in the application successfully.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Click the link of "www.163.com".</step_desc>
+              <expected>PASS: if the HP of www.163.com is not opened in the application but opened in the default browser of the device.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Access Request Policy. </spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="url-access-ajax-resource" execution_type="manual" purpose="Check if WRT is able to Access request to resource which using ajax technology." priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install url-access-ajax-resource.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Click the option "select"</step_desc>
+              <expected>PASS: if only "select" is in the option box.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Click the button "loading".</step_desc>
+              <expected>PASS: if focus is on the "loading" button.</expected>
+            </step>
+            <step order="4">
+              <step_desc>Click the option "select".</step_desc>
+              <expected>PASS: if "tom,tom2,tom3" are displayed in the option box.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Access Request Policy. </spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="url-access-multi" execution_type="manual" purpose="Check if WRT is able to Access request to multi network resource when more than 2 access elements set in config.xml." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install url-access-multi.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Click the link "http://www.baidu.com"</step_desc>
+              <expected>PASS: if "http://www.baidu.com" is opened in this widget successfully.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Click the link "http://www.neusoft.com".</step_desc>
+              <expected>PASS: if "http://www.neusoft.com" is opened in this widget successfully.</expected>
+            </step>
+            <step order="4">
+              <step_desc>Click the link "http://www.163.com".</step_desc>
+              <expected>PASS: if "http://www.163.com" is not opened in this widget but in the device browser.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Access Request Policy. </spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="url-access-multi-all" execution_type="manual" purpose="Check if WRT is able to Access request to all network resource when set in config.xml - access origin='*' " priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install url-access-multi-all.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Click the link "http://www.baidu.com"</step_desc>
+              <expected>PASS: if "http://www.baidu.com" is opened in this widget successfully.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Click the link "http://www.neusoft.com".</step_desc>
+              <expected>PASS: if "http://www.neusoft.com" is opened in this widget successfully.</expected>
+            </step>
+            <step order="4">
+              <step_desc>Click the link "http://www.163.com".</step_desc>
+              <expected>PASS: if "http://www.163.com" is opened in this widget successfully.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Access Request Policy. </spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="url-access-multi-subdomains" execution_type="manual" purpose="Check if WRT is able to Access request to subdomains network resource when set in config.xml - subdomains='true'" priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install url-access-multi-subdomains.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Click the link "http://www.baidu.com"</step_desc>
+              <expected>PASS: if "http://www.baidu.com" is opened in this widget successfully.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Click the link "http://www.baidu.com/gaoji/preferences.html"</step_desc>
+              <expected>PASS: if "http://www.baidu.com/gaoji/preferences.html" is unable to open in this widget.</expected>
+            </step>
+            <step order="4">
+              <step_desc>Click the link "http://www.neusoft.com".</step_desc>
+              <expected>PASS: if "http://www.neusoft.com" is opened in this widget successfully.</expected>
+            </step>
+            <step order="5">
+              <step_desc>Click the link "http://www.neusoft.com/cn".</step_desc>
+              <expected>PASS: if "http://www.neusoft.com/cn" is opened in this widget successfully.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0410" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Access Request Policy. </spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-uri-schemes-sms" execution_type="manual" purpose="Check if the WRT support scheme sms:// " priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-uri-schemes-sms.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Click on link "sms"</step_desc>
+              <expected>PASS: if the sms module of the device is requested.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0420" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support at least the following URI schemes: sms:// , mmsto:// , mailto://</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-uri-schemes-mmsto" execution_type="manual" purpose="Check if the WRT support scheme mmsto:// " priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-uri-schemes-mmsto.wgt.</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Click on link "mmsto"</step_desc>
+              <expected>PASS: if mms module of the device is requested.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0420" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support at least the following URI schemes: sms:// , mmsto:// , mailto://</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-uri-schemes-mailto" execution_type="manual" purpose="Check if the WRT support scheme mailto:// " priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-uri-schemes-mailto.wgt.</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Click on link "mailto"</step_desc>
+              <expected>PASS: if email module of the device is requested.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0420" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support at least the following URI schemes: sms:// , mmsto:// , mailto://</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-localization" execution_type="manual" purpose="Check if the WRT support localization " priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed;Make sure the locale language is English</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-localization.wgt.</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Confirm the widget's name on screen.</step_desc>
+              <expected>PASS: if the name under the icon is "english-ol".</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0440" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support localization as defined in W3C Widget Packaging and XML Configuration.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface" execution_type="manual" purpose="Check if the WRT support W3C Widget Interface. " priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-widget-interface.wgt.</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Touch the icon to entry the application.</step_desc>
+              <expected>PASS: if there is a green "Pass" on screen display.(widget.name=other-widget-interface)</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-uri-scheme" execution_type="manual" purpose="Check if the WRT support W3C Widget URI Scheme. " priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-widget-uri-scheme.wgt.</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Press the button "Launch"</step_desc>
+              <expected>Pass: if there is a picture added on screen.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support Widget URI Scheme.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-uri-schemes-mailto-cc" execution_type="manual" purpose="Check if WRT supports schemes mail cc." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-uri-schemes-mailto-cc.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch the application.</step_desc>
+              <expected>PASS: if see the email with its cc account on screen display.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0440" specification="other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-uri-schemes-mailto-bcc" execution_type="manual" purpose="Check if WRT supports schemes mail bcc." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-uri-schemes-mailto-bcc.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Touch "run" button on the screen.</step_desc>
+              <expected>PASS: if see the email with its bcc account on screen display.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0440" specification="other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-uri-schemes-mailto-body" execution_type="manual" purpose="Check if WRT supports schemes mail body." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed;</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-uri-schemes-mailto-body.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch the application.</step_desc>
+              <expected>PASS: if see the email with body content on screen display.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0440" specification="other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-uri-schemes-mailto-groups" execution_type="manual" purpose="Check if WRT supports schemes mail groups." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed;</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-uri-schemes-mailto-groups .wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch the application.</step_desc>
+              <expected>PASS: if see the email with its groups account on screen display.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0440" specification="other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-uri-schemes-mailto-subject" execution_type="manual" purpose="Check if WRT supports schemes mail subject." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed;</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-uri-schemes-mailto-subject.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch the application.</step_desc>
+              <expected>if see the email with its subject content on screen display.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0440" specification="other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-uri-schemes-mailto-tel" execution_type="manual" purpose="Check if WRT supports schemes tel." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed;</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-uri-schemes-mailto-tel.wgt</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch the application.</step_desc>
+              <expected>PASS: if see the telephone call on screen display.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0420" specification="other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-author-name" execution_type="manual" purpose="Check if the WRT support W3C widget interface author name attribute." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-widget-interface-attribute.wgt.</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Touch the button "Test author".</step_desc>
+              <expected>PASS: A green "Pass" appears on the right side of the button.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-author-email" execution_type="manual" purpose="Check if the WRT support W3C widget interface author email attribute." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-widget-interface-attribute.wgt.</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Touch the button "Test authorEmail".</step_desc>
+              <expected>PASS: A green "Pass" appears on the right side of the button.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-author-href" execution_type="manual" purpose="Check if the WRT support W3C widget interface author href attribute." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-widget-interface-attribute.wgt.</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Touch the button "Test authorHref".</step_desc>
+              <expected>PASS: A green "Pass" appears on the right side of the button.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-description" execution_type="manual" purpose="Check if the WRT support W3C widget interface description attribute." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-widget-interface-attribute.wgt.</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Touch the button "Test description".</step_desc>
+              <expected>PASS: A green "Pass" appears on the right side of the button.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-short-name" execution_type="manual" purpose="Check if the WRT support W3C widget interface short name attribute." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-widget-interface-attribute.wgt.</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Touch the button "Test shortName".</step_desc>
+              <expected>PASS: A green "Pass" appears on the right side of the button.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-version" execution_type="manual" purpose="Check if the WRT support W3C widget interface version attribute." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-widget-interface-attribute.wgt.</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Touch the button "Test version".</step_desc>
+              <expected>PASS: A green "Pass" appears on the right side of the button.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-id" execution_type="manual" purpose="Check if the WRT support W3C widget interface id attribute." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-widget-interface-attribute.wgt.</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Touch the button "Test id".</step_desc>
+              <expected>PASS: A green "Pass" appears on the right side of the button.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-height" execution_type="manual" purpose="Check if the WRT support W3C widget interface height attribute." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-widget-interface-attribute.wgt.</step_desc>
+              <expected>PASS: if the widget package is successfully installed with its icon appears on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Touch the button "Test height".</step_desc>
+              <expected>PASS: A green "Pass" appears on the right side of the button.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-width" execution_type="manual" purpose="Check if the WRT support W3C widget interface width attribute." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-widget-interface-attribute.wgt</step_desc>
+              <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Touch the button "Test width"</step_desc>
+              <expected>Pass: A green prompt of "Pass" appears on the right side of the button.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-preference-getitem" execution_type="manual" purpose="Check if the WRT support W3C widget interface preference getItem method." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-widget-interface-method.wgt</step_desc>
+              <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Touch the button "Test getItem('preKey')"</step_desc>
+              <expected>Pass: A green prompt of "Pass" appears on the right side of the button.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-preference-setitem" execution_type="manual" purpose="Check if the WRT support W3C widget interface preference setItem method." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-widget-interface-method.wgt</step_desc>
+              <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Change the value of "preNum" from "0"to "1" and change the value of "preString" from "b" to "a"</step_desc>
+              <expected>Pass: value changed successfully.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Push the button "Save writable item"</step_desc>
+              <expected>Pass: Message like "The method widget.preferences.setItem() launched well!" pops up on the screen.</expected>
+            </step>
+            <step order="4">
+              <step_desc>Change the value of "preNum" from "1"to "2" and change the value of "preString" from "a" to "c"</step_desc>
+              <expected>Pass: value changed successfully.</expected>
+            </step>
+            <step order="5">
+              <step_desc>Push the button "Load writable item"</step_desc>
+              <expected>Pass: the value of "preNum" became "1" and the value of "preString" became "a".</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-preference-setitem-readonly" execution_type="manual" purpose="Check if the WRT support W3C widget interface preference setItem method when preference is readonly." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-widget-interface-method.wgt</step_desc>
+              <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Push the button "Load readonly item"</step_desc>
+              <expected>Pass: Message like "licenseKey can not be changed" displayed in the textbox.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Delete the word "licenseKey" in the textbox</step_desc>
+              <expected>Pass: deleted the word successfully.</expected>
+            </step>
+            <step order="4">
+              <step_desc>Push the button "Save readonly item"</step_desc>
+              <expected>Pass: Message like "Pass, the readonly item can not be saved." pops up on the screen.</expected>
+            </step>
+            <step order="5">
+              <step_desc>Push the button "Load readonly item"</step_desc>
+              <expected>Pass: Message like "licenseKey can not be changed" displayed in the textbox.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-preference-clear" execution_type="manual" purpose="Check if the WRT support W3C widget interface preference clear method." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-widget-interface-method.wgt</step_desc>
+              <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Change the value of "preNum" from "0"to "1" and change the value of "preString" from "b" to "a"</step_desc>
+              <expected>Pass: value changed successfully.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Push the button "Save writable item"</step_desc>
+              <expected>Pass: Message like "The method widget.preferences.setItem() launched well!" pops up on the screen.</expected>
+            </step>
+            <step order="4">
+              <step_desc>Push the button "Clear writable item"</step_desc>
+              <expected>Pass: Message like "widget.preferences.clear() launched successfully!" pops up on the screen.</expected>
+            </step>
+            <step order="5">
+              <step_desc>Change the value of "preNum" from "1"to "2" and change the value of "preString" from "a" to "c"</step_desc>
+              <expected>Pass: value changed successfully.</expected>
+            </step>
+            <step order="6">
+              <step_desc>Push the button "Load writable item"</step_desc>
+              <expected>Pass: the value of "preString" and "preNum" did not change.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-preference-clear-readonly" execution_type="manual" purpose="Check if the WRT support W3C widget interface preference can not clear the readonly preference with clear method." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-widget-interface-method.wgt</step_desc>
+              <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Push the button "Load readonly item"</step_desc>
+              <expected>Pass: Message like "licenseKey can not be changed" displayed in the textbox.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Push the button "Clear writable item"</step_desc>
+              <expected>Pass: Message like "widget.preferences.clear() launched successfully!" pops up on the screen.</expected>
+            </step>
+            <step order="4">
+              <step_desc>Delete the word "licenseKey" in the textbox</step_desc>
+              <expected>Pass: deleted the word successfully.</expected>
+            </step>
+            <step order="5">
+              <step_desc>Push the button "Load readonly item"</step_desc>
+              <expected>Pass: Message like "licenseKey can not be changed" displayed in the textbox.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-preference-setitem-undefined" execution_type="manual" purpose="Check if the WRT support W3C widget interface preference setItem method when preference is undefined." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-widget-interface-method.wgt</step_desc>
+              <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Input "aaa" to "Key:" textbox, and input "111" to "Value:" textbox</step_desc>
+              <expected>Pass: input parameter successfully.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Push the button "Save undefined item"</step_desc>
+              <expected>Pass: Message like "Save succeed! key is aaa,value is 111" pops up on the screen.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-preference-getitem-undefined" execution_type="manual" purpose="Check if the WRT support W3C widget interface preference getitem method when preference is undefined." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-widget-interface-method.wgt</step_desc>
+              <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Input "aaa" to "Key:" textbox, and input "111" to "Value:" textbox</step_desc>
+              <expected>Pass: input parameter successfully.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Push the button "Save undefined item"</step_desc>
+              <expected>Pass: Message like "Save succeed! key is aaa,value is 111" pops up on the screen.</expected>
+            </step>
+            <step order="4">
+              <step_desc>Change "111" to "222" in "Value:" textbox</step_desc>
+              <expected>Pass: The parameter changed successfully.</expected>
+            </step>
+            <step order="5">
+              <step_desc>Push the button "Load undefined item"</step_desc>
+              <expected>Pass: The parameter of "Value:" textbox changed from "222" to "111".</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-widget-interface-preference-clear-undefined" execution_type="manual" purpose="Check if the WRT support W3C widget interface preference clear method when preference is undefined." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-widget-interface-method.wgt</step_desc>
+              <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Input "aaa" to "Key:" textbox, and input "111" to "Value:" textbox</step_desc>
+              <expected>Pass: input parameter successfully.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Push the button "Save undefined item"</step_desc>
+              <expected>Pass: Message like "Save succeed! key is aaa,value is 111" pops up on the screen.</expected>
+            </step>
+            <step order="4">
+              <step_desc>Change "111" to "222" in "Value:" textbox</step_desc>
+              <expected>Pass: The parameter of "Value:" textbox changed successfully.</expected>
+            </step>
+            <step order="5">
+              <step_desc>Push the button "Load undefined item"</step_desc>
+              <expected>Pass: The parameter of "Value:" textbox changed from "222" to "111".</expected>
+            </step>
+            <step order="6">
+              <step_desc>Push the button "Clear undefined item"</step_desc>
+              <expected>Pass: Message like "widget.preferences.clear() launched successfully!" pop up.</expected>
+            </step>
+            <step order="7">
+              <step_desc>Change "111" to "333" in "Value:" textbox</step_desc>
+              <expected>Pass: The parameter changed successfully.</expected>
+            </step>
+            <step order="8">
+              <step_desc>Push the button "Load undefined item"</step_desc>
+              <expected>Pass: The parameter of "Value:" textbox disdisplayed is null.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support W3C Widget Interface.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-localization-description" execution_type="manual" purpose="Check if the WRT support localization of description." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed;Make sure the locale language is English</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-localization-description.wgt</step_desc>
+              <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Open the installed widget and touch the button "description"</step_desc>
+              <expected>Pass: Message like "english description." displayed on the screen.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0440" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-localization-description-default" execution_type="manual" purpose="Check if the WRT support default localization of description." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed;Make sure the locale language is Chinese</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-localization-description.wgt</step_desc>
+              <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Open the installed widget and touch the button "description"</step_desc>
+              <expected>Pass: Message like "default description." displayed on the screen.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0440" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="other-localization-description-change" execution_type="manual" purpose="Check if the WRT support localization of description when receiving platform language change event." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed;Make sure the locale language is English</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-localization-description.wgt</step_desc>
+              <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Open the installed widget and touch the button "description"</step_desc>
+              <expected>Pass: Message like "english description." displayed on the screen.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Change the device language to "Korean"</step_desc>
+              <expected>Pass: device language is changed successfully.</expected>
+            </step>
+            <step order="4">
+              <step_desc>Close running widget other-localization-description</step_desc>
+              <expected>Pass: this widget is closed successfully.</expected>
+            </step>
+            <step order="5">
+              <step_desc>Open the installed widget again and touch the button "description"</step_desc>
+              <expected>Pass: Message like "korean description." displayed on the screen.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0440" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM onplay event for audio lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-audio-onplay" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-audio-onplay is installed.According to README push the resources of testing to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-audio-onplay application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Play the music</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM onplaying event for audio lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-audio-onplaying" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-audio-onplaying is installed.According to README push the resources of testing to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-audio-onplaying application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Play the music</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM onpause event for audio lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-audio-onpause" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-audio-onpause is installed.According to README push the resources of testing to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-audio-onpause application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Play the music</step_desc>
+              <expected>Pass: if the music is played.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Pause the music</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM onended event for audio lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-audio-onended" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-audio-onended is installed.According to README push the resources of testing to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-audio-onended application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Play the music</step_desc>
+              <expected>Pass: if the music is played.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Waiting for the music play ended</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM ontimeupdate event for audio lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-audio-ontimeupdate" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-audio-ontimeupdate is installed.According to README push the resources of testing to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-audio-ontimeupdate application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Play the music</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM onvolumechange event for audio lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-audio-onvolumechange" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-audio-onvolumechange is installed.According to README push the resources of testing to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-audio-onvolumechange application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Play the music</step_desc>
+              <expected>Pass: if the music is played.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Change the volume of the music</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM ondurationchange event for audio lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-audio-ondurationchange" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-audio-ondurationchange is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-audio-ondurationchange application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM oncanplaythrough event for audio lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-audio-oncanplaythrough" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-audio-oncanplaythrough is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-audio-oncanplaythrough application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM ondragstart event of canvas lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-canvas-mouse-ondragstart" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-canvas-mouse-ondragstart is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-canvas-mouse-ondragstart application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and a red circle displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Put the red circle drag-and-drop to rectangular</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM ondrop event of canvas lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-canvas-mouse-ondrop" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-canvas-mouse-ondrop is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-canvas-mouse-ondrop application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and a red circle displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Put the red circle drag-and-drop to rectangular</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM ondragover event of canvas lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-canvas-mouse-ondragover" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-canvas-mouse-ondragover is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-canvas-mouse-ondragover application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and a red circle displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Put the red circle drag-and-drop to rectangular</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM ondragleave event of canvas lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-canvas-mouse-ondragleave" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-canvas-mouse-ondragleave is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-canvas-mouse-ondragleave application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and a red circle displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Put the red circle drag-and-drop to rectangular</step_desc>
+              <expected>Pass: if the red circle in the rectangular inside.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Try put the red circle drag-and-drop to the initial position</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM ondragenter event of canvas lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-canvas-mouse-ondragenter" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-canvas-mouse-ondragenter is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-canvas-mouse-ondragenter application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and a red circle displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Put the red circle drag-and-drop to rectangular</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM ondragend event of canvas lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-canvas-mouse-ondragend" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-canvas-mouse-ondragend is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-canvas-mouse-ondragend application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and a red circle displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Put the red circle drag-and-drop to rectangular</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM ondrag event of canvas lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-canvas-mouse-ondrag" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-canvas-mouse-ondrag is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-canvas-mouse-ondrag application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and a red circle displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Put the red circle drag-and-drop to rectangular</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM ondragstart event of div lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-div-mouse-ondragstart" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-div-mouse-ondragstart is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-div-mouse-ondragstart application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and the selected picture displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Put the picture drag-and-drop to rectangular</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM ondrop event of div lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-div-mouse-ondrop" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-div-mouse-ondrop is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-div-mouse-ondrop application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and the selected picture displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Put the picture drag-and-drop to rectangular</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM ondragover event of div lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-div-mouse-ondragover" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-div-mouse-ondragover is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-div-mouse-ondragover application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and the selected picture displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Put the picture drag-and-drop to rectangular</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM ondragleave event of div lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-div-mouse-ondragleave" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-div-mouse-ondragleave is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-div-mouse-ondragleave application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and the selected picture displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Put the picture drag-and-drop to rectangular</step_desc>
+              <expected>Pass: if the picture is in the rectangular inside.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Try put the picture drag-and-drop to rectangular outside</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM ondragenter event of div lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-div-mouse-ondragenter" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-div-mouse-ondragenter is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-div-mouse-ondragenter application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and the selected picture displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Put the picture drag-and-drop to rectangular</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM ondragend event of div lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-div-mouse-ondragend" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-div-mouse-ondragend is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-div-mouse-ondragend application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and the selected picture displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Put the picture drag-and-drop to rectangular</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM ondrag event of div lable mouse events." component="Web/Runtime/WebApplicationRuntime" id="dom-events-div-mouse-ondrag" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-div-mouse-ondrag is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-div-mouse-ondrag application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and the selected picture displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Put the picture drag-and-drop to rectangular</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM onclick event of details lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-details-onclick" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-details-onclick is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-details-onclick application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and "title" is displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Click the "title"</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM onclick event of footer lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-footer-onclick" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-footer-onclick is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-footer-onclick application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and "This is footer." is displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Click the "This is footer."</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM onclick event of mark lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-mark-onclick" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-mark-onclick is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-mark-onclick application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and "mark test." is displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Click the highlight "mark"</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM onclick event of ruby lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-ruby-onclick" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-ruby-onclick is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-ruby-onclick application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and "ruby test." is displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Click the "ruby test."</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM onclick event of rt lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-rt-onclick" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-rt-onclick is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-rt-onclick application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and "['ru:bi]" is displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Click the "['ru:bi]"</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM onfocus event of text input." component="Web/Runtime/WebApplicationRuntime" id="dom-events-text-onfocus" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-text-onfocus is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-text-onfocus application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and button "ClickMe" is displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Click the "ClickMe" textbox</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM onblur event of text input." component="Web/Runtime/WebApplicationRuntime" id="dom-events-button-onblur" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-text-onblur is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-text-onblur application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully , textbox "ClickMe" and textbox "ClickMe2" are displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Click the "ClickMe" textbox then click the "ClickMe2" textbox</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM onchange event of select lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-select-onchange" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-select-onchange is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-select-onchange application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and the "Tom" is displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Change the "Tom" to "Kevin"</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM onfocus event of select lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-select-onfocus" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-select-onfocus is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-select-onfocus application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and the "Tom" is displayed.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Change the "Tom" to "Kevin"</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM onplay event for video lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-video-onplay" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-video-onplay is installed.According to README push the resources of testing to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-video-onplay application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Play the music</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM onplaying event for video lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-video-onplaying" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-video-onplaying is installed.According to README push the resources of testing to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-video-onplaying application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Play the music</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM onpause event for video lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-video-onpause" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-video-onpause is installed.According to README push the resources of testing to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-video-onpause application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Play the music</step_desc>
+              <expected>Pass: if the music is played.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Pause the music</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM onended event for video lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-video-onended" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-video-onended is installed.According to README push the resources of testing to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-video-onended application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Play the music</step_desc>
+              <expected>Pass: if the music is played.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Waiting for the music play ended</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM ontimeupdate event for video lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-video-ontimeupdate" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-video-ontimeupdate is installed.According to README push the resources of testing to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-video-ontimeupdate application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Play the music</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM onvolumechange event for video lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-video-onvolumechange" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-video-onvolumechange is installed.According to README push the resources of testing to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-video-onvolumechange application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Play the music</step_desc>
+              <expected>Pass: if the music is played.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Change the volume of the music</step_desc>
+              <expected>Pass: if the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM ondurationchange event for video lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-video-ondurationchange" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-video-ondurationchange is installed.According to README push the resources of testing to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-video-ondurationchange application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if the WRT support W3C DOM oncanplaythrough event for video lable." component="Web/Runtime/WebApplicationRuntime" id="dom-events-video-oncanplaythrough" execution_type="manual" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure dom-events-video-oncanplaythrough is installed.According to README push the resources of testing to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the dom-events-video-oncanplaythrough application</step_desc>
+              <expected>Pass: if the widget application can be launched successfully and the blue "Pass" is displayed.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0310" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if WRT can not access to the resourse internal of the widget When widget uri scheme is 'widg'" type="user_experience" status="approved" component="Web/Runtime/WebApplicationRuntime" execution_type="manual" priority="P3" id="other-uri-scheme-invalid">
+        <description>
+          <pre_condition>Make sure the other-uri-scheme-invalid.wgt is installed.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch other-uri-scheme-invalid.wgt</step_desc>
+              <expected>The widget application be launched.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Press the button "Launch"</step_desc>
+              <expected>Pass: if the pictures can not be displayed on the screen.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion usage="true" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>TBD</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if WRT not allow to access to the resourse of the widget When the origin of url is being determined a invalid widget URI" type="user_experience" status="approved" component="Web/Runtime/WebApplicationRuntime" execution_type="manual" priority="P3" id="other-uri-invalid">
+        <description>
+          <pre_condition>Make sure the other-uri-invalid.wgt is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch other-uri-invalid.wgt</step_desc>
+              <expected>The widget application be launched.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Press the button "Launch"</step_desc>
+              <expected>Pass: if the pictures can not be displayed on the screen.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion usage="true" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>TBD</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if WRT supports the widget uri component : hash" type="user_experience" status="approved" component="Web/Runtime/WebApplicationRuntime" execution_type="manual" priority="P3" id="other-uri-hash">
+        <description>
+          <pre_condition>Make sure the other-uri-hash.wgt is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch other-uri-hash.wgt</step_desc>
+              <expected>The widget application be launched.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Press the button "Launch"</step_desc>
+              <expected>Pass: if turn to another page,then the screen shows "Pass".</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion usage="true" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>TBD</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if WRT allow to access to the index file of the widget" type="user_experience" status="approved" component="Web/Runtime/WebApplicationRuntime" execution_type="manual" priority="P3" id="other-uri-index">
+        <description>
+          <pre_condition>Make sure the other-uri-index.wgt is installed successfully</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch other-uri-index.wgt</step_desc>
+              <expected>The widget application be launched.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Press the button "Launch"</step_desc>
+              <expected>Pass: if turn to another page.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion usage="true" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>TBD</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if WRT supports the widget uri component : port" type="user_experience" status="approved" component="Web/Runtime/WebApplicationRuntime" execution_type="manual" priority="P3" id="other-uri-port">
+        <description>
+          <pre_condition>Make sure other-uri-port.wgt is installed</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch other-uri-port.wgt</step_desc>
+              <expected>The widget application be launched.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Press the button "Launch"</step_desc>
+              <expected>Pass: if turn to another page,then the screen shows "Pass".</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion usage="true" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>TBD</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if WRT supports the widget uri component : scheme" type="user_experience" status="approved" component="Web/Runtime/WebApplicationRuntime" execution_type="manual" priority="P3" id="other-uri-scheme">
+        <description>
+          <pre_condition/>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-uri-scheme.wgt</step_desc>
+              <expected>Widget application is able to install,then the icon is displayed on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch other-uri-scheme.wgt</step_desc>
+              <expected>The widget application be launched.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Press the button "Launch"</step_desc>
+              <expected>Pass: if turn to another page,then the screen shows "Pass".</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion usage="true" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>TBD</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase purpose="Check if WRT can not access to the resourse internal of the widget When widget uri scheme is null." type="user_experience" status="approved" component="Web/Runtime/WebApplicationRuntime" execution_type="manual" priority="P3" id="other-uri-scheme-null">
+        <description>
+          <pre_condition/>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install other-uri-scheme-null.wgt</step_desc>
+              <expected>Widget application is able to install,then the icon is displayed on screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch other-uri-scheme-null.wgt</step_desc>
+              <expected>The widget application be launched.</expected>
+            </step>
+            <step order="3">
+              <step_desc>Press the button "Launch"</step_desc>
+              <expected>Pass: if the pictures can not be displayed on the screen.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion usage="true" interface="0460" specification="Other" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>TBD</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="css-animation-background-unable" execution_type="manual" purpose="Check if WRT is able to suspend rendering CSS animation when Web Application enters invisible state while background support is unable" priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed;</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install css-animation-background-unable.wgt</step_desc>
+              <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch the application</step_desc>
+              <expected>Pass: if the application is launched successfully.</expected>
+            </step>
+            <step order="3">
+              <step_desc>When the moving block turn to yellow color (the right-side of the block arrived in 300px), press the "Home" button on device</step_desc>
+              <expected>It turn to home screen.</expected>
+            </step>
+            <step order="4">
+              <step_desc>Wait for more than 10 seconds then turn back to this page by click the icon on the home screen</step_desc>
+              <expected>the block continuously moving from 300px to 500px and at the same time the color changing from yellow to blue.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0320" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST suspend JavaScript execution and rendering (including CSS animations) when Web Application enters invisible state, unless the author explicitly declared the Web Application to be a background service in the configuration document</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="css-animation-background-enable" execution_type="manual" purpose="Check if WRT is able to continue render CSS animation when Web Application enters invisible state while background support is enabled" priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed;</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install css-animation-background-enable.wgt</step_desc>
+              <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch the application</step_desc>
+              <expected>Pass: if the application is launched successfully.</expected>
+            </step>
+            <step order="3">
+              <step_desc>When the moving block turn to yellow color (the right-side of the block arrived in 300px), press the "Home" button on device</step_desc>
+              <expected>It turn to home screen.</expected>
+            </step>
+            <step order="4">
+              <step_desc>Wait for more than 10 seconds then turn back to this page by click the icon on the home screen"</step_desc>
+              <expected>the block has turned into bule color and the right-side of the block arrived at 500px.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0340" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST NOT suspend Web Application's execution if the author explicitly declared the Web Application to be a background service in the configuration document.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="css-animation-background-default" execution_type="manual" purpose="Check if WRT is able to suspend rendering CSS animation when Web Application enters invisible state and resume rendering when enters visible while background support is setted as default" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure WRT is installed;</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Install css-animation-background-default.wgt</step_desc>
+              <expected>Pass: if the widget package is installed successfullly and its icon appears in screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Launch the application</step_desc>
+              <expected>Pass: if the application is launched successfully.</expected>
+            </step>
+            <step order="3">
+              <step_desc>When the moving block turn to yellow color (the right-side of the block arrived in 300px), press the "Home" button on device</step_desc>
+              <expected>It turn to home screen.</expected>
+            </step>
+            <step order="4">
+              <step_desc>Wait for more than 10 seconds then turn back to this page by click the icon on the home screen</step_desc>
+              <expected>the block continuously moving from 300px to 500px and at the same time the color changing from yellow to blue.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0330" specification="Web Application Lifecycle" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>For applications whose execution was suspended the WRT MUST resume JavaScript execution and rendering (including CSS animations) when Web Application enters visible state.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-app-id-null" execution_type="manual" purpose="Check if WRT not support Web Application URI when the app-id is empty" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure app-uri-scheme-app-id-null.wgt is installed and according to README pushed the image to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the app-uri-scheme-app-id-null application</step_desc>
+              <expected>Pass: if you can not see the selected picture on the screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Uninstalled app-uri-scheme-app-id-null.wgt</step_desc>
+              <expected>Pass: The application can be uninstalled successfully.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0341" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support Web Application URI (WebAppURI) as per following rules.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-app-id-not-null" execution_type="manual" purpose="Check if WRT support Web Application URI when the app-id is not empty" priority="P0" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure app-uri-scheme-app-id-not-null.wgt is installed.WRT is installed and according to README pushed the image to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the app-uri-scheme-app-id-not-null application</step_desc>
+              <expected>Pass ï¼š If you can see the selected picture on the screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Uninstalled app-uri-scheme-app-id-not-null.wgt</step_desc>
+              <expected>Pass: The application can be uninstalled successfully.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0341" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support Web Application URI (WebAppURI) as per following rules.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-scheme-is-null" execution_type="manual" purpose="Check if WRT not support Web Application URI when the scheme is empty" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure app-uri-scheme-scheme-is-null.wgt is installed.Make sure WRT is installed and according to README pushed the image to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the app-uri-scheme-scheme-is-null application</step_desc>
+              <expected>Pass: if you can not see the selected picture on the screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Uninstalled app-uri-scheme-scheme-is-null.wgt</step_desc>
+              <expected>Pass: The application can be uninstalled successfully.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0341" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement>The WRT MUST support Web Application URI (WebAppURI) as per following rules.</spec_statement>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-for-img" execution_type="manual" purpose="Check if WRT support HTML document of which is a image" priority="P0" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure app-uri-scheme-for-img.wgt is installed.Make sure WRT is installed and according to README pushed the image to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the app-uri-scheme-for-img application</step_desc>
+              <expected>Pass: if you can see the selected picture on the screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Uninstalled app-uri-scheme-for-img.wgt</step_desc>
+              <expected>Pass: The application can be uninstalled successfully.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0341" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-scheme-is-wrongful" execution_type="manual" purpose="Check if WRT not support Web Application URI when the Scheme is invalid" priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure app-uri-scheme-scheme-is-wrongful.wgt is installed.Make sure WRT is installed and according to README pushed the image to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the app-uri-scheme-scheme-is-wrongful application</step_desc>
+              <expected>Pass: if you can not see the selected picture on the screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Uninstalled app-uri-scheme-scheme-is-wrongful.wgt</step_desc>
+              <expected>Pass: The application can be uninstalled successfully.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0341" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-for-root-origin" execution_type="manual" purpose="Check if WRT treat the WebAppURI pointing to the WebApplication package root directory as the document's origin." priority="P0" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure app-uri-scheme-for-root-origin.wgt is installed.Make sure WRT is installed and according to README pushed the image to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the app-uri-scheme-for-root-origin application</step_desc>
+              <expected>Pass: if you can see the selected picture on the screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Uninstalled app-uri-scheme-for-root-origin.wgt</step_desc>
+              <expected>Pass: The application can be uninstalled successfully.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0342" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-root-origin-wrongful" execution_type="manual" purpose="Check if WRT can not support document's origin when WebApplication package root directory is invalid" priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure app-uri-scheme-for-wrong-package.wgt has been installed and according to README pushed the image to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the app-uri-scheme-for-wrong-package application</step_desc>
+              <expected>Pass: if you can not see the selected picture on the screen.</expected>
+            </step>
+          </steps>
           <step order="2">
             <step_desc>Uninstalled app-uri-scheme-for-wrong-package.wgt</step_desc>
             <expected>Pass: The application can be uninstalled successfully.</expected>
           </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0344" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-rightfuls-requested" execution_type="manual" purpose="Check if WRT treat access tag specified external resources in configuration document as same origin resource." priority="P0" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure app-uri-scheme-requested-resource.wgt is installed and according to README pushed the image to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the app-uri-scheme-requested-resource application</step_desc>
-            <expected>Pass: you will see the message "Click me".</expected>
-          </step>
-          <step order="2">
-            <step_desc>Click the message (Click me)</step_desc>
-            <expected>Pass: you will see the message (Pass: if you see the selected picture on the screen !(Click 'OK' )).</expected>
-          </step>
-          <step order="3">
-            <step_desc>Uninstalled app-uri-scheme-requested-resource.wgt</step_desc>
-            <expected>Pass: The application can be uninstalled successfully.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0345" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-wrongful-requested" execution_type="manual" purpose="Check if WRT not treat access tag specified external resources in configuration document when the src is invalid." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure app-uri-scheme-using-symbolic-links.wgt is installed and according to README pushed the image to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the app-uri-scheme-using-symbolic-links application</step_desc>
-            <expected>Pass: if you can see the links.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Click the links</step_desc>
-            <expected>Pass: if you can see the message(Pass: if you not see the selected picture on the screen).</expected>
-          </step>
-          <step order="3">
-            <step_desc>Uninstalled app-uri-scheme-using-symbolic-links.wgt</step_desc>
-            <expected>Pass: The application can be uninstalled successfully.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0345" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-index-html" execution_type="manual" purpose="Check if WRT treat access tag specified resources in configuration as origin resource." priority="P2" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure app-uri-scheme-index-html.wgt is installed and according to README pushed the image to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the app-uri-scheme-index-html application</step_desc>
-            <expected>Pass: if you see the selected picture on the screen.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Uninstalled app-uri-scheme-index-html.wgt</step_desc>
-            <expected>Pass: The application can be uninstalled successfully.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0346" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-    <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-access-html" execution_type="manual" purpose="Check if WRT support Web Application URI when When using the access tag specifies the page." priority="P1" status="approved" type="Functional positive">
-      <description>
-        <pre_condition>Make sure app-uri-scheme-access-html.wgt is installed and according to README pushed the image to device.</pre_condition>
-        <post_condition></post_condition>
-        <steps>
-          <step order="1">
-            <step_desc>Launch the app-uri-scheme-access-html application</step_desc>
-            <expected>Pass : The application can be launched successfully.</expected>
-          </step>
-          <step order="2">
-            <step_desc>Uninstalled app-uri-scheme-access-html.wgt</step_desc>
-            <expected>Pass: The application can be uninstalled successfully.</expected>
-          </step>
-        </steps>
-        <test_script_entry test_script_expected_result="0"></test_script_entry>
-        <notes></notes>
-      </description>
-      <specs>
-        <spec>
-          <spec_assertion element_type="attribute" element_name="N/A" interface="0346" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"></spec_assertion>
-          <spec_url></spec_url>
-          <spec_statement></spec_statement>
-        </spec>
-      </specs>
-    </testcase>
-  </set>
-</suite>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0342" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-for-dom-properties-img" execution_type="manual" purpose="Check if WRT support DOM objects' image properties" priority="P0" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure app-uri-scheme-for-dom-properties.wgt has been installed and according to README pushed the image to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the app-uri-scheme-for-dom-properties application</step_desc>
+              <expected>Pass: if you see a message on the screen(Pass : When you click me you will see "True").</expected>
+            </step>
+            <step order="2">
+              <step_desc>Touch the message (Pass : When you click me you will see "True")</step_desc>
+              <expected>Pass: if you can see the message(Pass : true).</expected>
+            </step>
+            <step order="3">
+              <step_desc>Uninstalled app-uri-scheme-for-dom-properties.wgt</step_desc>
+              <expected>Pass: The application can be uninstalled successfully.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0343" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-for-dom-properties-audio" execution_type="manual" purpose="Check if WRT support DOM objects' audio properties." priority="P0" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure app-uri-scheme-for-dom-properties.wgt is installed and according to README pushed the music to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the app-uri-scheme-for-dom-properties application</step_desc>
+              <expected>Pass: if you see a message on the screen(Pass : When you click me you will see "True").</expected>
+            </step>
+            <step order="2">
+              <step_desc>Touch in front of the audio message(Pass : When you click me you will see "True")</step_desc>
+              <expected>Pass: if you can see the message(Pass : true).</expected>
+            </step>
+            <step order="3">
+              <step_desc>Uninstalled app-uri-scheme-for-dom-properties.wgt</step_desc>
+              <expected>Pass: The application can be uninstalled successfully.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0343" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-for-dom-properties-textarea" execution_type="manual" purpose="Check if WRT support DOM objects' textarea properties." priority="P0" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure app-uri-scheme-for-dom-properties.wgt is installed and according to README pushed the image to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the app-uri-scheme-for-dom-properties application</step_desc>
+              <expected>Pass: if you see a textarea name is "Pass : when you are change me, you will see "True"" on the screen(Pass : When you click me you will see "True").</expected>
+            </step>
+            <step order="2">
+              <step_desc>Change the textarea value of the object</step_desc>
+              <expected>Pass: if you can see the message(Pass : true).</expected>
+            </step>
+            <step order="3">
+              <step_desc>Uninstalled app-uri-scheme-for-dom-properties.wgt</step_desc>
+              <expected>Pass: The application can be uninstalled successfully.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0343" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-for-dom-properties-button" execution_type="manual" purpose="Check if WRT support DOM objects' Button properties." priority="P0" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure app-uri-scheme-for-dom-properties.wgt is installed and WRT is installed and according to README pushed the image to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the app-uri-scheme-for-dom-properties application</step_desc>
+              <expected>Pass: if you see a button name is "Pass : When you click me you will see "True" " on the screen(Pass : When you click me you will see "True").</expected>
+            </step>
+            <step order="2">
+              <step_desc>Click the Button(Pass : When you click me you will see "True")</step_desc>
+              <expected>Pass: if you can see the message(Pass : True).</expected>
+            </step>
+            <step order="3">
+              <step_desc>Uninstalled app-uri-scheme-for-dom-properties.wgt</step_desc>
+              <expected>Pass: The application can be uninstalled successfully.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0343" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-for-dom-properties-location" execution_type="manual" purpose="Check if WRT support DOM objects' Location properties." priority="P0" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure app-uri-scheme-for-dom-properties.wgt is installed and WRT is installed and according to README pushed the image to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the app-uri-scheme-for-dom-properties application</step_desc>
+              <expected>Pass: if you can see a message the thing that is "Pass : When you see me !".</expected>
+            </step>
+            <step order="2">
+              <step_desc>Uninstalled app-uri-scheme-for-dom-properties.wgt</step_desc>
+              <expected>Pass: The application can be uninstalled successfully.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0343" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-for-package-rightful" execution_type="manual" purpose="Check if WRT support the requested resource using WebAppURI is located within the requesting WebApplication's package." priority="P0" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure app-uri-scheme-for-package.wgt is installed and according to README pushed the image to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the app-uri-scheme-for-package application</step_desc>
+              <expected>Pass: if you see the selected picture on the screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Uninstalled app-uri-scheme-for-package.wgt</step_desc>
+              <expected>Pass: The application can be uninstalled successfully.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0344" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-for-package-wrongful" execution_type="manual" purpose="Check if WRT not support the requested resource using WebAppURI is break out of the package." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure app-uri-scheme-for-wrong-package.wgt is installed and according to README pushed the image to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the app-uri-scheme-for-wrong-package application</step_desc>
+              <expected>Pass: if you can not see a image on the screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Uninstalled app-uri-scheme-for-wrong-package.wgt</step_desc>
+              <expected>Pass: The application can be uninstalled successfully.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0344" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-rightfuls-requested" execution_type="manual" purpose="Check if WRT treat access tag specified external resources in configuration document as same origin resource." priority="P0" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure app-uri-scheme-requested-resource.wgt is installed and according to README pushed the image to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the app-uri-scheme-requested-resource application</step_desc>
+              <expected>Pass: you will see the message "Click me".</expected>
+            </step>
+            <step order="2">
+              <step_desc>Click the message (Click me)</step_desc>
+              <expected>Pass: you will see the message (Pass: if you see the selected picture on the screen !(Click 'OK' )).</expected>
+            </step>
+            <step order="3">
+              <step_desc>Uninstalled app-uri-scheme-requested-resource.wgt</step_desc>
+              <expected>Pass: The application can be uninstalled successfully.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0345" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-wrongful-requested" execution_type="manual" purpose="Check if WRT not treat access tag specified external resources in configuration document when the src is invalid." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure app-uri-scheme-using-symbolic-links.wgt is installed and according to README pushed the image to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the app-uri-scheme-using-symbolic-links application</step_desc>
+              <expected>Pass: if you can see the links.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Click the links</step_desc>
+              <expected>Pass: if you can see the message(Pass: if you not see the selected picture on the screen).</expected>
+            </step>
+            <step order="3">
+              <step_desc>Uninstalled app-uri-scheme-using-symbolic-links.wgt</step_desc>
+              <expected>Pass: The application can be uninstalled successfully.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0345" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-index-html" execution_type="manual" purpose="Check if WRT treat access tag specified resources in configuration as origin resource." priority="P2" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure app-uri-scheme-index-html.wgt is installed and according to README pushed the image to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the app-uri-scheme-index-html application</step_desc>
+              <expected>Pass: if you see the selected picture on the screen.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Uninstalled app-uri-scheme-index-html.wgt</step_desc>
+              <expected>Pass: The application can be uninstalled successfully.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0346" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+      <testcase component="Web/Runtime/WebApplicationRuntime" id="app-uri-scheme-access-html" execution_type="manual" purpose="Check if WRT support Web Application URI when When using the access tag specifies the page." priority="P1" status="approved" type="Functional positive">
+        <description>
+          <pre_condition>Make sure app-uri-scheme-access-html.wgt is installed and according to README pushed the image to device.</pre_condition>
+          <post_condition/>
+          <steps>
+            <step order="1">
+              <step_desc>Launch the app-uri-scheme-access-html application</step_desc>
+              <expected>Pass : The application can be launched successfully.</expected>
+            </step>
+            <step order="2">
+              <step_desc>Uninstalled app-uri-scheme-access-html.wgt</step_desc>
+              <expected>Pass: The application can be uninstalled successfully.</expected>
+            </step>
+          </steps>
+          <test_script_entry test_script_expected_result="0"/>
+          <notes/>
+        </description>
+        <specs>
+          <spec>
+            <spec_assertion element_type="attribute" element_name="N/A" interface="0346" specification="Web Application URI Scheme" section="Web Application Runtime" category="Tizen WRT Core Specifications"/>
+            <spec_url/>
+            <spec_statement/>
+          </spec>
+        </specs>
+      </testcase>
+    </set>
+  </suite>
 </test_definition>