[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 07:59:03 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 326b6c9a6a268482a56a0599ed1566249ce43793
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Oct 1 20:36:13 2003 +0000

    Adding layout test for setting of cssFlaot via a with clause.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5106 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/fast/invalid/015-expected.txt b/LayoutTests/fast/dynamic/005-expected.txt
similarity index 69%
copy from LayoutTests/fast/invalid/015-expected.txt
copy to LayoutTests/fast/dynamic/005-expected.txt
index 0c1c805..6fb069c 100644
--- a/LayoutTests/fast/invalid/015-expected.txt
+++ b/LayoutTests/fast/dynamic/005-expected.txt
@@ -3,3 +3,4 @@ layer at (0,0) size 800x600
 layer at (0,0) size 800x8
   RenderBlock {HTML} at (0,0) size 800x8
     RenderBody {BODY} at (8,8) size 784x0
+      RenderBlock (floating) {DIV} at (684,0) size 100x100 [bgcolor=#008000]
diff --git a/LayoutTests/fast/dynamic/005.html b/LayoutTests/fast/dynamic/005.html
new file mode 100644
index 0000000..2c11ce2
--- /dev/null
+++ b/LayoutTests/fast/dynamic/005.html
@@ -0,0 +1,10 @@
+<body>
+<div id="foo" style="width:100px;height:100px;background-color:green"></div>
+<script>
+var f = document.getElementById('foo');
+f.style.cssFloat = 'left';
+with (f.style) {
+  cssFloat = 'right';
+}
+</script>
+</body>

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list