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

abarth at webkit.org abarth at webkit.org
Wed Dec 22 11:43:47 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 8ce8a6b536ed8862a665dd1838e0dd7fce888c47
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Aug 5 07:01:11 2010 +0000

    2010-08-05  Adam Barth  <abarth at webkit.org>
    
            Reviewed by Eric Seidel.
    
            Add a test for SVG-in-HTML
            https://bugs.webkit.org/show_bug.cgi?id=43539
    
            Just a basic test that we can render SVG in HTML.
    
            * platform/mac/svg/in-html/circle-expected.txt: Added.
            * svg/in-html/circle.html: Added.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64717 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index bf5abce..34d7854 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,15 @@
+2010-08-05  Adam Barth  <abarth at webkit.org>
+
+        Reviewed by Eric Seidel.
+
+        Add a test for SVG-in-HTML
+        https://bugs.webkit.org/show_bug.cgi?id=43539
+
+        Just a basic test that we can render SVG in HTML.
+
+        * platform/mac/svg/in-html/circle-expected.txt: Added.
+        * svg/in-html/circle.html: Added.
+
 2010-08-04  Zoltan Herczeg  <zherczeg at webkit.org>
 
         Reviewed by Nikolas Zimmermann.
diff --git a/LayoutTests/platform/mac/svg/in-html/circle-expected.txt b/LayoutTests/platform/mac/svg/in-html/circle-expected.txt
new file mode 100644
index 0000000..83fb059
--- /dev/null
+++ b/LayoutTests/platform/mac/svg/in-html/circle-expected.txt
@@ -0,0 +1,12 @@
+layer at (0,0) size 785x662
+  RenderView at (0,0) size 785x600
+layer at (0,0) size 785x662
+  RenderBlock {HTML} at (0,0) size 785x662
+    RenderBody {BODY} at (8,16) size 769x638
+      RenderBlock {P} at (0,0) size 769x18
+        RenderText {#text} at (0,0) size 188x18
+          text run at (0,0) width 188: "This circle is drawn via SVG."
+      RenderBlock (anonymous) at (0,34) size 769x604
+        RenderSVGRoot {svg} at (8,50) size 40x40
+          RenderPath {circle} at (8,50) size 40x40 [fill={[type=SOLID] [color=#008000]}] [data="M40.00,20.00 L39.96,21.26 L39.84,22.51 L39.65,23.75 L39.37,24.97 L39.02,26.18 L38.60,27.36 L38.10,28.52 L37.53,29.64 L36.89,30.72 L36.18,31.76 L35.41,32.75 L34.58,33.69 L33.69,34.58 L32.75,35.41 L31.76,36.18 L30.72,36.89 L29.64,37.53 L28.52,38.10 L27.36,38.60 L26.18,39.02 L24.97,39.37 L23.75,39.65 L22.51,39.84 L21.26,39.96 L20.00,40.00 L18.74,39.96 L17.49,39.84 L16.25,39.65 L15.03,39.37 L13.82,39.02 L12.64,38.60 L11.48,38.10 L10.36,37.53 L9.28,36.89 L8.24,36.18 L7.25,35.41 L6.31,34.58 L5.42,33.69 L4.59,32.75 L3.82,31.76 L3.11,30.72 L2.47,29.64 L1.90,28.52 L1.40,27.36 L0.98,26.18 L0.63,24.97 L0.35,23.75 L0.16,22.51 L0.04,21.26 L0.00,20.00 L0.04,18.74 L0.16,17.49 L0.35,16.25 L0.63,15.03 L0.98,13.82 L1.40,12.64 L1.90,11.48 L2.47,10.36 L3.11,9.28 L3.82,8.24 L4.59,7.25 L5.42,6.31 L6.31,5.42 L7.25,4.59 L8.24,3.82 L9.28,3.11 L10.36,2.47 L11.48,1.90 L12.64,1.40 L13.82,0.98 L15.03,0.63 L16.25,0.35 L17.49,0.16 L18.74,0.04 L20.00,0.00 L21.26,0.04 L22.51,0.16 L23.75,0.35 L24.97,0.63 L26.18,0.98 L27.36,1.40 L28.52,1.90 L29.64,2.47 L30.72,3.11 L31.76,3.82 L32.75,4.59 L33.69,5.42 L34.58,6.31 L35.41,7.25 L36.18,8.24 L36.89,9.28 L37.53,10.36 L38.10,11.48 L38.60,12.64 L39.02,13.82 L39.37,15.03 L39.65,16.25 L39.84,17.49 L39.96,18.74 Z"]
+        RenderText {#text} at (0,0) size 0x0
diff --git a/LayoutTests/svg/in-html/circle.html b/LayoutTests/svg/in-html/circle.html
new file mode 100644
index 0000000..0f99845
--- /dev/null
+++ b/LayoutTests/svg/in-html/circle.html
@@ -0,0 +1,8 @@
+<!DOCTYPE html>
+<html>
+<body>
+<p>This circle is drawn via SVG.</p>
+<svg>
+<circle cx="20" cy="20" r="20" fill="green" />
+</svg>
+</body>

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list