[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

hyatt hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:17:00 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit da5e2b1358fe0857541ffe8edec6d508f069c32b
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Dec 9 19:56:10 2003 +0000

    Adding a dynamic cell array test.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5725 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/fast/dynamic/007-expected.txt b/LayoutTests/fast/dynamic/007-expected.txt
new file mode 100644
index 0000000..552356e
--- /dev/null
+++ b/LayoutTests/fast/dynamic/007-expected.txt
@@ -0,0 +1,17 @@
+layer at (0,0) size 800x600
+  RenderCanvas at (0,0) size 800x600
+layer at (0,0) size 800x40
+  RenderBlock {HTML} at (0,0) size 800x40
+    RenderBody {BODY} at (8,8) size 784x24
+      RenderTable {TABLE} at (0,0) size 198x24
+        RenderTableSection {TBODY} at (0,0) size 0x24
+          RenderTableRow {TR} at (0,0) size 0x0
+            RenderTableCell {TD} at (2,2) size 59x20 [bgcolor=#FFFFCC] [r=0 c=0 rs=1 cs=1]
+              RenderText {TEXT} at (1,1) size 57x18
+                text run at (1,1) width 57: "Cell One"
+            RenderTableCell {TD} at (63,2) size 62x20 [bgcolor=#FFFFCC] [r=0 c=1 rs=1 cs=1]
+              RenderText {TEXT} at (1,1) size 60x18
+                text run at (1,1) width 60: "Cell Two"
+            RenderTableCell {TD} at (127,2) size 69x20 [bgcolor=#FFFFCC] [r=0 c=2 rs=1 cs=1]
+              RenderText {TEXT} at (1,1) size 67x18
+                text run at (1,1) width 67: "Cell Three"
diff --git a/LayoutTests/fast/dynamic/007.html b/LayoutTests/fast/dynamic/007.html
new file mode 100644
index 0000000..b604284
--- /dev/null
+++ b/LayoutTests/fast/dynamic/007.html
@@ -0,0 +1,19 @@
+<html>
+<head>
+<title>Dynamic Table Row Cell Array Test</title>
+<script>
+function color(obj) {
+        for (var i=0; i < obj.cells.length; i++) {
+
+                obj.cells[i].style.backgroundColor = '#FFFFCC';
+        }
+}
+</script>
+</head>
+<body>
+<table border=0>
+<tr id="t"><td>Cell One<td>Cell Two<td>Cell Three</table>
+</table>
+<script>
+color(document.getElementById('t'))
+</script>

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list