[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:12:20 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit e3fc7783ca0bd9aacdb17a7986efea3c564b8064
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Nov 16 20:57:04 2003 +0000

    Add a dynamic id manipulation test.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5517 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/fast/dynamic/006-expected.txt b/LayoutTests/fast/dynamic/006-expected.txt
new file mode 100644
index 0000000..36ad0b8
--- /dev/null
+++ b/LayoutTests/fast/dynamic/006-expected.txt
@@ -0,0 +1,8 @@
+layer at (0,0) size 800x600
+  RenderCanvas at (0,0) size 800x600
+layer at (0,0) size 800x34
+  RenderBlock {HTML} at (0,0) size 800x34
+    RenderBody {BODY} at (8,8) size 784x18
+      RenderBlock {DIV} at (0,0) size 784x18 [bgcolor=#00FF00]
+        RenderText {TEXT} at (0,0) size 279x18
+          text run at (0,0) width 279: "The background of this div should be green."
diff --git a/LayoutTests/fast/dynamic/006.html b/LayoutTests/fast/dynamic/006.html
new file mode 100644
index 0000000..6abefeb
--- /dev/null
+++ b/LayoutTests/fast/dynamic/006.html
@@ -0,0 +1,16 @@
+<html>
+<head>
+<style>
+.green {
+  background-color: lime;
+}
+</style>
+</head>
+<body>
+<div id="foo">The background of this div should be green.</div>
+<script>
+document.getElementById('foo').id = 'goo';
+document.getElementById('goo').className = 'green';
+</script>
+</body>
+</html>

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list