[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 15:40:14 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 6dd75725acf37fdcaf44cac48a91ff7f9dd34dc1
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Nov 10 04:23:56 2010 +0000

    2010-11-09  Adrienne Walker  <enne at google.com>
    
            Reviewed by Kenneth Russell.
    
            Removing context-attributes.html webgl test as it is now redundant.
            https://bugs.webkit.org/show_bug.cgi?id=47111
    
            * fast/canvas/webgl/context-attributes-expected.txt: Removed.
            * fast/canvas/webgl/context-attributes.html: Removed.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@71713 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index b940410..ccde06d 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,13 @@
+2010-11-09  Adrienne Walker  <enne at google.com>
+
+        Reviewed by Kenneth Russell.
+
+        Removing context-attributes.html webgl test as it is now redundant.
+        https://bugs.webkit.org/show_bug.cgi?id=47111
+
+        * fast/canvas/webgl/context-attributes-expected.txt: Removed.
+        * fast/canvas/webgl/context-attributes.html: Removed.
+
 2010-11-09  Fumitoshi Ukai  <ukai at chromium.org>
 
         Unreviewed, updating Chromium expectations
diff --git a/LayoutTests/fast/canvas/webgl/context-attributes-expected.txt b/LayoutTests/fast/canvas/webgl/context-attributes-expected.txt
deleted file mode 100644
index 35e8b9d..0000000
--- a/LayoutTests/fast/canvas/webgl/context-attributes-expected.txt
+++ /dev/null
@@ -1,39 +0,0 @@
-Test passing down and fetching of WebGLContextAttributes
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-Test default values
-PASS context = create3DContext(null) is non-null.
-PASS attribs = context.getContextAttributes() is non-null.
-PASS attribs.depth is true
-PASS attribs.alpha is true
-PASS attribs.stencil is false
-PASS attribs.antialias == true || attribs.antialias == false is true
-PASS attribs.premultipliedAlpha is true
-Test customized values
-PASS context = create3DContext(null, { stencil: false, antialias: false }) is non-null.
-PASS attribs = context.getContextAttributes() is non-null.
-PASS attribs.depth is true
-PASS attribs.alpha is true
-PASS attribs.stencil is false
-PASS attribs.antialias is false
-PASS attribs.premultipliedAlpha is true
-Test customized values
-PASS context = create3DContext(null, { depth: false, stencil: true, antialias: false }) is non-null.
-PASS attribs = context.getContextAttributes() is non-null.
-PASS attribs.depth == attribs.stencil is true
-PASS attribs.alpha is true
-PASS attribs.antialias is false
-PASS attribs.premultipliedAlpha is true
-Test customized values
-PASS context = create3DContext(null, { premultipliedAlpha: false, antialias: false }) is non-null.
-PASS attribs = context.getContextAttributes() is non-null.
-PASS attribs.depth is true
-PASS attribs.alpha is true
-PASS attribs.stencil == true || attribs.stencil == false is true
-PASS attribs.antialias is false
-PASS attribs.premultipliedAlpha == true || attribs.premultipliedAlpha == false is true
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
diff --git a/LayoutTests/fast/canvas/webgl/context-attributes.html b/LayoutTests/fast/canvas/webgl/context-attributes.html
deleted file mode 100644
index 268d153..0000000
--- a/LayoutTests/fast/canvas/webgl/context-attributes.html
+++ /dev/null
@@ -1,61 +0,0 @@
-<html>
-<head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
-<script src="../../js/resources/js-test-pre.js"></script>
-<script src="resources/webgl-test.js"></script>
-</head>
-<body>
-<div id="description"></div>
-<div id="console"></div>
-
-<script>
-description("Test passing down and fetching of WebGLContextAttributes");
-
-debug("Test default values");
-var context;
-var attribs;
-shouldBeNonNull("context = create3DContext(null)");
-shouldBeNonNull("attribs = context.getContextAttributes()");
-shouldBe("attribs.depth", "true");
-shouldBe("attribs.alpha", "true");
-shouldBe("attribs.stencil", "false");
-// Antialias is requested by default, but might or might not be supported.
-shouldBe("attribs.antialias == true || attribs.antialias == false", "true");
-shouldBe("attribs.premultipliedAlpha", "true");
-
-debug ("Test customized values");
-shouldBeNonNull("context = create3DContext(null, { stencil: false, antialias: false })");
-shouldBeNonNull("attribs = context.getContextAttributes()");
-shouldBe("attribs.depth", "true");
-shouldBe("attribs.alpha", "true");
-shouldBe("attribs.stencil", "false");
-shouldBe("attribs.antialias", "false");
-shouldBe("attribs.premultipliedAlpha", "true");
-
-debug("Test customized values");
-// (stencil == true && depth == false) is not supported.
-// Default depth to true if EXT_packed_depth_stencil is supported.
-// Otherwise, both depth and stencil should be false.
-shouldBeNonNull("context = create3DContext(null, { depth: false, stencil: true, antialias: false })");
-shouldBeNonNull("attribs = context.getContextAttributes()");
-shouldBe("attribs.depth == attribs.stencil", "true");
-shouldBe("attribs.alpha", "true");
-shouldBe("attribs.antialias", "false");
-shouldBe("attribs.premultipliedAlpha", "true");
-
-debug("Test customized values");
-// (premultipliedAlpha == false) is not supported by most implementations yet
-shouldBeNonNull("context = create3DContext(null, { premultipliedAlpha: false, antialias: false })");
-shouldBeNonNull("attribs = context.getContextAttributes()");
-shouldBe("attribs.depth", "true");
-shouldBe("attribs.alpha", "true");
-shouldBe("attribs.stencil == true || attribs.stencil == false", "true");
-shouldBe("attribs.antialias", "false");
-shouldBe("attribs.premultipliedAlpha == true || attribs.premultipliedAlpha == false", "true");
-
-successfullyParsed = true;
-</script>
-
-<script src="../../js/resources/js-test-post.js"></script>
-</body>
-</html>

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list