[common][canvas][DPTTIZEN-3032, remove 8 tcs due to spec change] 03/178803/2
authorzhongyuan <zy123.yuan@samsung.com>
Mon, 14 May 2018 05:55:39 +0000 (13:55 +0800)
committerzhongyuan <zy123.yuan@samsung.com>
Wed, 16 May 2018 05:35:12 +0000 (13:35 +0800)
Change-Id: I7c0bd5433ab6086a244df5ce8fb5b7bc26a4c2f7

common/tct-canvas-html5-tests/canvas/CanvasRenderingContext2D_getContextAttributes.html [deleted file]
common/tct-canvas-html5-tests/canvas/CanvasRenderingContext2D_getContextAttributes_exist.html [deleted file]
common/tct-canvas-html5-tests/canvas/CanvasRenderingContext2D_getContextAttributes_extra_argument.html [deleted file]
common/tct-canvas-html5-tests/canvas/w3c/2d.drawImage.animated.poster.html [deleted file]
common/tct-canvas-html5-tests/canvas/w3c/2d.fillStyle.parse.invalid.hex4.html [deleted file]
common/tct-canvas-html5-tests/canvas/w3c/2d.fillStyle.parse.invalid.hex8.html [deleted file]
common/tct-canvas-html5-tests/canvas/w3c/2d.imageData.create2.tiny.html [deleted file]
common/tct-canvas-html5-tests/canvas/w3c/2d.imageData.get.tiny.html [deleted file]
common/tct-canvas-html5-tests/tests.full.xml
common/tct-canvas-html5-tests/tests.xml

diff --git a/common/tct-canvas-html5-tests/canvas/CanvasRenderingContext2D_getContextAttributes.html b/common/tct-canvas-html5-tests/canvas/CanvasRenderingContext2D_getContextAttributes.html
deleted file mode 100755 (executable)
index 4afe64d..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2016 Samsung Electronics Co., Ltd.
-
-Licensed under the Apache License, Version 2.0 (the License);
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-
-Authors:
-        Wei Ji <wei.ji@samsung.com>
-
--->
-<html>
-<head>
-<title>CanvasRenderingContext2D_getContextAttributes</title>
-<meta charset="utf-8"/>
-<script src="support/unitcommon.js"></script>
-</head>
-<body>
-<canvas id="canvas" width="200" height="100" style="border:1px solid #c3c3c3;">
-    Your browser does not support the canvas element.
-</canvas>
-<div id="log"></div>
-<script>
-//==== TEST: CanvasRenderingContext2D_getContextAttributes
-//==== LABEL Check if getContextAttributes() correctly gets context attributes.
-//==== SPEC Tizen Web API:Graphics:Canvas:CanvasRenderingContext2D:getContextAttributes M
-//==== SPEC_URL http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#canvasrenderingcontext2d
-//==== PRIORITY P1
-//==== TEST_CRITERIA MR MNA
-
-test(function () {
-    var canvas, ctx, retVal = null;
-
-    canvas = document.getElementById("canvas");
-    ctx = canvas.getContext("2d");
-    retVal = ctx.getContextAttributes();
-    assert_type(retVal, "object", "Return value should be type object.");
-    assert_equals(retVal.alpha, true, "Attribute alpha should be true.");
-}, document.title);
-
-</script>
-</body>
-</html>
\ No newline at end of file
diff --git a/common/tct-canvas-html5-tests/canvas/CanvasRenderingContext2D_getContextAttributes_exist.html b/common/tct-canvas-html5-tests/canvas/CanvasRenderingContext2D_getContextAttributes_exist.html
deleted file mode 100755 (executable)
index 0151d49..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2016 Samsung Electronics Co., Ltd.
-
-Licensed under the Apache License, Version 2.0 (the License);
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-
-Authors:
-        Wei Ji <wei.ji@samsung.com>
-
--->
-<html>
-<head>
-<title>CanvasRenderingContext2D_getContextAttributes_exist</title>
-<meta charset="utf-8"/>
-<script src="support/unitcommon.js"></script>
-</head>
-<body>
-<canvas id="canvas" width="200" height="100" style="border:1px solid #c3c3c3;">
-    Your browser does not support the canvas element.
-</canvas>
-<div id="log"></div>
-<script>
-//==== TEST: CanvasRenderingContext2D_getContextAttributes_exist
-//==== LABEL Check if method getContextAttributes() exists.
-//==== SPEC Tizen Web API:Graphics:Canvas:CanvasRenderingContext2D:getContextAttributes M
-//==== SPEC_URL http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#canvasrenderingcontext2d
-//==== PRIORITY P0
-//==== TEST_CRITERIA ME
-
-test(function () {
-    var canvas, ctx;
-
-    canvas = document.getElementById("canvas");
-    ctx = canvas.getContext("2d");
-    check_method_exists(ctx, "getContextAttributes");
-}, document.title);
-
-</script>
-</body>
-</html>
\ No newline at end of file
diff --git a/common/tct-canvas-html5-tests/canvas/CanvasRenderingContext2D_getContextAttributes_extra_argument.html b/common/tct-canvas-html5-tests/canvas/CanvasRenderingContext2D_getContextAttributes_extra_argument.html
deleted file mode 100755 (executable)
index 52901d7..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2016 Samsung Electronics Co., Ltd.
-
-Licensed under the Apache License, Version 2.0 (the License);
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-
-Authors:
-        Wei Ji <wei.ji@samsung.com>
-
--->
-<html>
-<head>
-<title>CanvasRenderingContext2D_getContextAttributes_extra_argument</title>
-<meta charset="utf-8"/>
-<script src="support/unitcommon.js"></script>
-</head>
-<body>
-<canvas id="canvas" width="200" height="100" style="border:1px solid #c3c3c3;">
-    Your browser does not support the canvas element.
-</canvas>
-<div id="log"></div>
-<script>
-//==== TEST: CanvasRenderingContext2D_getContextAttributes_extra_argument
-//==== LABEL Check using getContextAttributes() with extra argument.
-//==== SPEC Tizen Web API:Graphics:Canvas:CanvasRenderingContext2D:getContextAttributes M
-//==== SPEC_URL http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#canvasrenderingcontext2d
-//==== PRIORITY P1
-//==== TEST_CRITERIA MNAEX
-
-test(function () {
-    var canvas, ctx;
-
-    canvas = document.getElementById("canvas");
-    ctx = canvas.getContext("2d");
-    checkExtraArgument(ctx, "getContextAttributes");
-}, document.title);
-
-</script>
-</body>
-</html>
\ No newline at end of file
diff --git a/common/tct-canvas-html5-tests/canvas/w3c/2d.drawImage.animated.poster.html b/common/tct-canvas-html5-tests/canvas/w3c/2d.drawImage.animated.poster.html
deleted file mode 100755 (executable)
index 8a49f21..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<title>Canvas test: 2d.drawImage.animated.poster</title>
-<meta name="author" content="Philip Taylor">
-<script src="../common/canvas-tests.js"></script>
-<link rel="stylesheet" href="../common/canvas-tests.css">
-<body class="show_output">
-
-<h1><a href="index.2d.html">2d</a>.<a href="index.2d.drawImage.html">drawImage</a>.<a href="index.2d.drawImage.animated.html">animated</a>.poster</h1>
-<p class="desc">drawImage() of an APNG draws the poster frame</p>
-
-<div class="refs">Spec references:
-<ul>
-<li><a href="../annotated-spec/canvas.html#testrefs.2d.drawImage.animated.image">2d.drawImage.animated.image</a>
-</ul>
-</div>
-
-<p class="output">Actual output:</p>
-<canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
-<p class="output expectedtext">Expected output:<p><img src="green-100x50.png" class="output expected" id="expected" alt="">
-<ul id="d"></ul>
-<script>
-_addTest(function(canvas, ctx) {
-
-ctx.drawImage(document.getElementById('anim-poster-gr.png'), 0, 0);
-_assertPixelApprox(canvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255", 2);
-
-
-});
-</script>
-<img src="../images/anim-poster-gr.png" id="anim-poster-gr.png" class="resource">
-
diff --git a/common/tct-canvas-html5-tests/canvas/w3c/2d.fillStyle.parse.invalid.hex4.html b/common/tct-canvas-html5-tests/canvas/w3c/2d.fillStyle.parse.invalid.hex4.html
deleted file mode 100755 (executable)
index 8bea385..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<title>Canvas test: 2d.fillStyle.parse.invalid.hex4</title>
-<meta name="author" content="Philip Taylor">
-<script src="../common/canvas-tests.js"></script>
-<link rel="stylesheet" href="../common/canvas-tests.css">
-<body class="show_output">
-
-<h1><a href="index.2d.html">2d</a>.<a href="index.2d.fillStyle.html">fillStyle</a>.<a href="index.2d.fillStyle.parse.html">parse</a>.<a href="index.2d.fillStyle.parse.invalid.html">invalid</a>.hex4</h1>
-<p class="desc"></p>
-
-<div class="refs">Spec references:
-<ul>
-<li><a href="../annotated-spec/canvas.html#testrefs.2d.colours.parse">2d.colours.parse</a>
-</ul>
-</div>
-
-<p class="output">Actual output:</p>
-<canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
-<p class="output expectedtext">Expected output:<p><img src="green-100x50.png" class="output expected" id="expected" alt="">
-<ul id="d"></ul>
-<script>
-_addTest(function(canvas, ctx) {
-
-
-ctx.fillStyle = '#0f0';
-try { ctx.fillStyle = '#ff00'; } catch (e) { } // this shouldn't throw, but it shouldn't matter here if it does
-ctx.fillRect(0, 0, 100, 50);
-_assertPixel(canvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255");
-
-
-});
-</script>
-
diff --git a/common/tct-canvas-html5-tests/canvas/w3c/2d.fillStyle.parse.invalid.hex8.html b/common/tct-canvas-html5-tests/canvas/w3c/2d.fillStyle.parse.invalid.hex8.html
deleted file mode 100755 (executable)
index a0dcd8d..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<title>Canvas test: 2d.fillStyle.parse.invalid.hex8</title>
-<meta name="author" content="Philip Taylor">
-<script src="../common/canvas-tests.js"></script>
-<link rel="stylesheet" href="../common/canvas-tests.css">
-<body class="show_output">
-
-<h1><a href="index.2d.html">2d</a>.<a href="index.2d.fillStyle.html">fillStyle</a>.<a href="index.2d.fillStyle.parse.html">parse</a>.<a href="index.2d.fillStyle.parse.invalid.html">invalid</a>.hex8</h1>
-<p class="desc"></p>
-
-<div class="refs">Spec references:
-<ul>
-<li><a href="../annotated-spec/canvas.html#testrefs.2d.colours.parse">2d.colours.parse</a>
-</ul>
-</div>
-
-<p class="output">Actual output:</p>
-<canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
-<p class="output expectedtext">Expected output:<p><img src="green-100x50.png" class="output expected" id="expected" alt="">
-<ul id="d"></ul>
-<script>
-_addTest(function(canvas, ctx) {
-
-
-ctx.fillStyle = '#0f0';
-try { ctx.fillStyle = '#ff0000ff'; } catch (e) { } // this shouldn't throw, but it shouldn't matter here if it does
-ctx.fillRect(0, 0, 100, 50);
-_assertPixel(canvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255");
-
-
-});
-</script>
-
diff --git a/common/tct-canvas-html5-tests/canvas/w3c/2d.imageData.create2.tiny.html b/common/tct-canvas-html5-tests/canvas/w3c/2d.imageData.create2.tiny.html
deleted file mode 100755 (executable)
index fd2ec85..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-<!DOCTYPE html>
-<title>Canvas test: 2d.imageData.create2.tiny</title>
-<meta name="author" content="Philip Taylor">
-<script src="../common/canvas-tests.js"></script>
-<link rel="stylesheet" href="../common/canvas-tests.css">
-<body class="show_output">
-
-<h1><a href="index.2d.html">2d</a>.<a href="index.2d.imageData.html">imageData</a>.<a href="index.2d.imageData.create2.html">create2</a>.tiny</h1>
-<p class="desc">createImageData(sw, sh) works for sizes smaller than one pixel</p>
-
-<div class="refs">Spec references:
-<ul>
-<li><a href="../annotated-spec/canvas.html#testrefs.2d.imageData.create2.size">2d.imageData.create2.size</a>
-<li><a href="../annotated-spec/canvas.html#testrefs.2d.imageData.one">2d.imageData.one</a>
-</ul>
-</div>
-
-<p class="output">Actual output:</p>
-<canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
-
-<ul id="d"></ul>
-<script>
-_addTest(function(canvas, ctx) {
-
-var imgdata = ctx.createImageData(0.0001, 0.0001);
-_assertEqual(imgdata.data.length, imgdata.width*imgdata.height*4, "imgdata.data.length", "imgdata.width*imgdata.height*4");
-_assertEqual(imgdata.width, 1, "imgdata.width", "1");
-_assertEqual(imgdata.height, 1, "imgdata.height", "1");
-var isTransparentBlack = true;
-for (var i = 0; i < imgdata.data.length; ++i)
-    if (imgdata.data[i] !== 0)
-        isTransparentBlack = false;
-_assert(isTransparentBlack, "isTransparentBlack");
-
-
-});
-</script>
-
diff --git a/common/tct-canvas-html5-tests/canvas/w3c/2d.imageData.get.tiny.html b/common/tct-canvas-html5-tests/canvas/w3c/2d.imageData.get.tiny.html
deleted file mode 100755 (executable)
index 7d996e8..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-<!DOCTYPE html>
-<title>Canvas test: 2d.imageData.get.tiny</title>
-<meta name="author" content="Philip Taylor">
-<script src="../common/canvas-tests.js"></script>
-<link rel="stylesheet" href="../common/canvas-tests.css">
-<body class="show_output">
-
-<h1><a href="index.2d.html">2d</a>.<a href="index.2d.imageData.html">imageData</a>.<a href="index.2d.imageData.get.html">get</a>.tiny</h1>
-<p class="desc">getImageData() works for sizes smaller than one pixel</p>
-
-<div class="refs">Spec references:
-<ul>
-<li><a href="../annotated-spec/canvas.html#testrefs.2d.imageData.one">2d.imageData.one</a>
-</ul>
-</div>
-
-<p class="output">Actual output:</p>
-<canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
-
-<ul id="d"></ul>
-<script>
-_addTest(function(canvas, ctx) {
-
-var imgdata = ctx.getImageData(0, 0, 0.0001, 0.0001);
-_assertEqual(imgdata.data.length, imgdata.width*imgdata.height*4, "imgdata.data.length", "imgdata.width*imgdata.height*4");
-_assertEqual(imgdata.width, 1, "imgdata.width", "1");
-_assertEqual(imgdata.height, 1, "imgdata.height", "1");
-
-
-});
-</script>
-
index 6556ee0441789681e7c57ec4c659b10bf3c539dc..5af2544e5f2aeec4effe643ac0fa14e0907533f7 100755 (executable)
           </spec>
         </specs>
       </testcase>-->
-      <!--testcase purpose="Check if getContextAttributes() correctly gets context attributes." type="compliance" status="approved" component="W3C_HTML5 APIs/Graphics/Canvas" execution_type="auto" priority="P1" id="CanvasRenderingContext2D_getContextAttributes">
-        <description>
-          <test_script_entry>/opt/tct-canvas-html5-tests/canvas/CanvasRenderingContext2D_getContextAttributes.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion interface="CanvasRenderingContext2D" element_type="method" element_name="getContextAttributes" specification="Canvas" section="Graphics" category="Tizen Device API Specifications"/>
-            <spec_url>http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#canvasrenderingcontext2d</spec_url>
-            <spec_statement>TBD</spec_statement>
-          </spec>
-        </specs>
-      </testcase>
-      <testcase purpose="Check if method getContextAttributes() exists." type="compliance" status="approved" component="W3C_HTML5 APIs/Graphics/Canvas" execution_type="auto" priority="P0" id="CanvasRenderingContext2D_getContextAttributes_exist">
-        <description>
-          <test_script_entry>/opt/tct-canvas-html5-tests/canvas/CanvasRenderingContext2D_getContextAttributes_exist.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion interface="CanvasRenderingContext2D" element_type="method" element_name="getContextAttributes" specification="Canvas" section="Graphics" category="Tizen Device API Specifications"/>
-            <spec_url>http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#canvasrenderingcontext2d</spec_url>
-            <spec_statement>TBD</spec_statement>
-          </spec>
-        </specs>
-      </testcase>
-      <testcase purpose="Check using getContextAttributes() with extra argument." type="compliance" status="approved" component="W3C_HTML5 APIs/Graphics/Canvas" execution_type="auto" priority="P1" id="CanvasRenderingContext2D_getContextAttributes_extra_argument">
-        <description>
-          <test_script_entry>/opt/tct-canvas-html5-tests/canvas/CanvasRenderingContext2D_getContextAttributes_extra_argument.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion interface="CanvasRenderingContext2D" element_type="method" element_name="getContextAttributes" specification="Canvas" section="Graphics" category="Tizen Device API Specifications"/>
-            <spec_url>http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#canvasrenderingcontext2d</spec_url>
-            <spec_statement>TBD</spec_statement>
-          </spec>
-        </specs>
-      </testcase-->
       <testcase purpose="Check if attribute imageSmoothingEnabled of CanvasRenderingContext2D exists, has type boolean." type="compliance" status="approved" component="W3C_HTML5 APIs/Graphics/Canvas" execution_type="auto" priority="P1" id="CanvasRenderingContext2D_imageSmoothingEnabled_attribute">
         <description>
           <test_script_entry>/opt/tct-canvas-html5-tests/canvas/CanvasRenderingContext2D_imageSmoothingEnabled_attribute.html</test_script_entry>
           </spec>
         </specs>
       </testcase>
-      <!--testcase purpose="Check if getImageData() works for sizes smaller than one pixel" type="compliance" status="approved" component="W3C_HTML5 APIs/Graphics/HTML5 The canvas element (Partial)" execution_type="auto" priority="P2" id="2d_imageData_get_tiny">
-        <description>
-          <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.imageData.get.tiny.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion element_type="method" element_name="getImageData" interface="CanvasRenderingContext2D" specification="HTML5 The canvas element (Partial)" section="Graphics" category="Tizen W3C API Specifications"/>
-            <spec_url>http://www.w3.org/TR/2012/WD-2dcontext-20120329/#dom-context-2d-getimagedata</spec_url>
-          </spec>
-        </specs>
-      </testcase-->
       <testcase purpose="Check if putImageData() puts modified image data correctly" type="compliance" status="approved" component="W3C_HTML5 APIs/Graphics/HTML5 The canvas element (Partial)" execution_type="auto" priority="P2" id="2d_imageData_put_modified">
         <description>
           <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.imageData.put.modified.html</test_script_entry>
           </spec>
         </specs>
       </testcase>
-      <!--testcase purpose="Check if fillStyle with invalid 4 hex number works" type="compliance" status="approved" component="W3C_HTML5 APIs/Graphics/HTML5 The canvas element (Partial)" execution_type="auto" priority="P2" id="2d_fillStyle_parse_invalid_4hex">
-        <description>
-          <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.fillStyle.parse.invalid.hex4.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion element_type="attribute" element_name="fillStyle" interface="CanvasRenderingContext2D" specification="HTML5 The canvas element (Partial)" section="Graphics" category="Tizen W3C API Specifications"/>
-            <spec_url>http://www.w3.org/TR/2012/WD-2dcontext-20120329/#dom-context-2d-fillstyle</spec_url>
-          </spec>
-        </specs>
-      </testcase!-->
       <testcase purpose="Check if the image can be displayed correcly after repeatting an empty pattern" type="compliance" status="approved" component="W3C_HTML5 APIs/Graphics/HTML5 The canvas element (Partial)" execution_type="auto" priority="P2" id="2d_pattern_repeat_empty">
         <description>
           <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.pattern.repeat.empty.html</test_script_entry>
           </spec>
         </specs>
       </testcase>
-      <!--testcase purpose="Check if fillStyle with 8 hex numbers works" type="compliance" status="approved" component="W3C_HTML5 APIs/Graphics/HTML5 The canvas element (Partial)" execution_type="auto" priority="P2" id="2d_fillStyle_parse_invalid_hex8">
-        <description>
-          <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.fillStyle.parse.invalid.hex8.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion element_type="attribute" element_name="fillStyle" interface="CanvasRenderingContext2D" specification="HTML5 The canvas element (Partial)" section="Graphics" category="Tizen W3C API Specifications"/>
-            <spec_url>http://www.w3.org/TR/2012/WD-2dcontext-20120329/#dom-context-2d-fillstyle</spec_url>
-          </spec>
-        </specs>
-      </testcase-->
       <testcase purpose="Check if putImageData() is not affected by context state" type="compliance" status="approved" component="W3C_HTML5 APIs/Graphics/HTML5 The canvas element (Partial)" execution_type="auto" priority="P2" id="2d_imageData_put_unaffected">
         <description>
           <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.imageData.put.unaffected.html</test_script_entry>
           </spec>
         </specs>
       </testcase>
-      <!--testcase purpose="Check if createImageData(sw, sh) works for sizes smaller than one pixel" type="compliance" status="approved" component="W3C_HTML5 APIs/Graphics/HTML5 The canvas element (Partial)" execution_type="auto" priority="P2" id="2d_imageData_create2_tiny">
-        <description>
-          <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.imageData.create2.tiny.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion element_type="method" element_name="createImageData" interface="CanvasRenderingContext2D" specification="HTML5 The canvas element (Partial)" section="Graphics" category="Tizen W3C API Specifications"/>
-            <spec_url>http://www.w3.org/TR/2012/WD-2dcontext-20120329/#dom-context-2d-createimagedata</spec_url>
-          </spec>
-        </specs>
-      </testcase-->
       <testcase purpose="Check if fill with winding subtract" type="compliance" status="approved" component="W3C_HTML5 APIs/Graphics/HTML5 The canvas element (Partial)" execution_type="auto" priority="P2" id="2d_path_fill_winding_1subtract">
         <description>
           <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.path.fill.winding.subtract.1.html</test_script_entry>
           </spec>
         </specs>
       </testcase>
-      <testcase purpose="Check if drawImage() of an APNG draws the poster frame" type="compliance" status="approved" component="W3C_HTML5 APIs/Graphics/HTML5 The canvas element (Partial)" execution_type="auto" priority="P2" id="2d_drawImage_animated_poster">
-        <description>
-          <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.drawImage.animated.poster.html</test_script_entry>
-        </description>
-        <specs>
-          <spec>
-            <spec_assertion element_type="method" element_name="drawImage" interface="CanvasRenderingContext2D" specification="HTML5 The canvas element (Partial)" section="Graphics" category="Tizen W3C API Specifications"/>
-            <spec_url>http://www.w3.org/TR/2012/WD-2dcontext-20120329/#dom-context-2d-drawimage</spec_url>
-          </spec>
-        </specs>
-      </testcase>
       <testcase purpose="Check if the first control point is added (and nothing is drawn up to it)  when there is no subpath," type="compliance" status="approved" component="W3C_HTML5 APIs/Graphics/HTML5 The canvas element (Partial)" execution_type="auto" priority="P2" id="2d_path_arcTo_ensuresubpath_radius">
         <description>
           <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.path.arcTo.ensuresubpath.1.html</test_script_entry>
       </testcase>
     </set>
   </suite>
-</test_definition>
\ No newline at end of file
+</test_definition>
index 61da5190a74e19624cfc56fa0684f46c9124edcb..85f88f3bf6ab72679c7b505e3c8dda79927d3a45 100755 (executable)
           <test_script_entry>/opt/tct-canvas-html5-tests/canvas/CanvasRenderingContext2D_filter_attribute.html</test_script_entry>
         </description>
       </testcase>-->
-      <!--testcase purpose="Check if getContextAttributes() correctly gets context attributes." component="W3C_HTML5 APIs/Graphics/Canvas" execution_type="auto" priority="P1" id="CanvasRenderingContext2D_getContextAttributes">
-        <description>
-          <test_script_entry>/opt/tct-canvas-html5-tests/canvas/CanvasRenderingContext2D_getContextAttributes.html</test_script_entry>
-        </description>
-      </testcase>
-      <testcase purpose="Check if method getContextAttributes() exists." component="W3C_HTML5 APIs/Graphics/Canvas" execution_type="auto" priority="P0" id="CanvasRenderingContext2D_getContextAttributes_exist">
-        <description>
-          <test_script_entry>/opt/tct-canvas-html5-tests/canvas/CanvasRenderingContext2D_getContextAttributes_exist.html</test_script_entry>
-        </description>
-      </testcase>
-      <testcase purpose="Check using getContextAttributes() with extra argument." component="W3C_HTML5 APIs/Graphics/Canvas" execution_type="auto" priority="P1" id="CanvasRenderingContext2D_getContextAttributes_extra_argument">
-        <description>
-          <test_script_entry>/opt/tct-canvas-html5-tests/canvas/CanvasRenderingContext2D_getContextAttributes_extra_argument.html</test_script_entry>
-        </description>
-      </testcase-->
       <testcase purpose="Check if attribute imageSmoothingEnabled of CanvasRenderingContext2D exists, has type boolean." component="W3C_HTML5 APIs/Graphics/Canvas" execution_type="auto" priority="P1" id="CanvasRenderingContext2D_imageSmoothingEnabled_attribute">
         <description>
           <test_script_entry>/opt/tct-canvas-html5-tests/canvas/CanvasRenderingContext2D_imageSmoothingEnabled_attribute.html</test_script_entry>
           <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.path.stroke.prune.line.html</test_script_entry>
         </description>
       </testcase>-->
-      <!--testcase component="W3C_HTML5 APIs/Graphics/HTML5 The canvas element (Partial)" execution_type="auto" id="2d_imageData_get_tiny" purpose="Check if getImageData() works for sizes smaller than one pixel">
-        <description>
-          <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.imageData.get.tiny.html</test_script_entry>
-        </description>
-      </testcase-->
       <testcase component="W3C_HTML5 APIs/Graphics/HTML5 The canvas element (Partial)" execution_type="auto" id="2d_imageData_put_modified" purpose="Check if putImageData() puts modified image data correctly">
         <description>
           <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.imageData.put.modified.html</test_script_entry>
           <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.composite.canvas.destination-in.html</test_script_entry>
         </description>
       </testcase>
-      <!--testcase component="W3C_HTML5 APIs/Graphics/HTML5 The canvas element (Partial)" execution_type="auto" id="2d_fillStyle_parse_invalid_4hex" purpose="Check if fillStyle with invalid 4 hex number works">
-        <description>
-          <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.fillStyle.parse.invalid.hex4.html</test_script_entry>
-        </description>
-      </testcase-->
       <testcase component="W3C_HTML5 APIs/Graphics/HTML5 The canvas element (Partial)" execution_type="auto" id="2d_pattern_repeat_empty" purpose="Check if the image can be displayed correcly after repeatting an empty pattern">
         <description>
           <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.pattern.repeat.empty.html</test_script_entry>
           <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.gradient.interpolate.outside.html</test_script_entry>
         </description>
       </testcase>
-      <!--testcase component="W3C_HTML5 APIs/Graphics/HTML5 The canvas element (Partial)" execution_type="auto" id="2d_fillStyle_parse_invalid_hex8" purpose="Check if fillStyle with 8 hex numbers works">
-        <description>
-          <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.fillStyle.parse.invalid.hex8.html</test_script_entry>
-        </description>
-      </testcase-->
       <testcase component="W3C_HTML5 APIs/Graphics/HTML5 The canvas element (Partial)" execution_type="auto" id="2d_imageData_put_unaffected" purpose="Check if putImageData() is not affected by context state">
         <description>
           <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.imageData.put.unaffected.html</test_script_entry>
           <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.pattern.paint.repeat.coord2.html</test_script_entry>
         </description>
       </testcase>
-      <!--testcase component="W3C_HTML5 APIs/Graphics/HTML5 The canvas element (Partial)" execution_type="auto" id="2d_imageData_create2_tiny" purpose="Check if createImageData(sw, sh) works for sizes smaller than one pixel">
-        <description>
-          <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.imageData.create2.tiny.html</test_script_entry>
-        </description>
-      </testcase-->
       <testcase component="W3C_HTML5 APIs/Graphics/HTML5 The canvas element (Partial)" execution_type="auto" id="2d_path_fill_winding_1subtract" purpose="Check if fill with winding subtract">
         <description>
           <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.path.fill.winding.subtract.1.html</test_script_entry>
           <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.path.clip.empty.html</test_script_entry>
         </description>
       </testcase>
-      <testcase component="W3C_HTML5 APIs/Graphics/HTML5 The canvas element (Partial)" execution_type="auto" id="2d_drawImage_animated_poster" purpose="Check if drawImage() of an APNG draws the poster frame">
-        <description>
-          <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.drawImage.animated.poster.html</test_script_entry>
-        </description>
-      </testcase>
       <testcase component="W3C_HTML5 APIs/Graphics/HTML5 The canvas element (Partial)" execution_type="auto" id="2d_path_arcTo_ensuresubpath_radius" purpose="Check if the first control point is added (and nothing is drawn up to it)  when there is no subpath,">
         <description>
           <test_script_entry test_script_expected_result="0">/opt/tct-canvas-html5-tests/canvas/w3c/2d.path.arcTo.ensuresubpath.1.html</test_script_entry>