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

simon.fraser at apple.com simon.fraser at apple.com
Wed Dec 22 14:32:16 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 0dd11b316e059a3f2ae74e39d4c37f282fc14741
Author: simon.fraser at apple.com <simon.fraser at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Oct 12 21:14:42 2010 +0000

    2010-10-12  Simon Fraser  <simon.fraser at apple.com>
    
            Screen.availLeft should be signed
            https://bugs.webkit.org/show_bug.cgi?id=34397
    
            Add the manual test missed in r69599.
    
            * manual-tests/screen-availLeft.html: Added.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@69603 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 6487224..f38b308 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,12 @@
+2010-10-12  Simon Fraser  <simon.fraser at apple.com>
+
+        Screen.availLeft should be signed
+        https://bugs.webkit.org/show_bug.cgi?id=34397
+        
+        Add the manual test missed in r69599.
+
+        * manual-tests/screen-availLeft.html: Added.
+
 2010-10-12  Girish Ramakrishnan  <girish at forwardbias.in>
 
         Reviewed by Ariya Hidayat.
diff --git a/WebCore/manual-tests/screen-availLeft.html b/WebCore/manual-tests/screen-availLeft.html
new file mode 100644
index 0000000..e8d9f39
--- /dev/null
+++ b/WebCore/manual-tests/screen-availLeft.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<html>
+<head>
+    <script type="text/javascript">
+        function log(s)
+        {
+            var output = document.getElementById('output');
+            output.innerHTML += s + "<br>";
+        }
+        
+        function doTest()
+        {
+            window.setInterval(function() {
+                
+                var screen = window.screen;
+                log('screen availLeft: ' + screen.availLeft + ' availTop: ' + screen.availTop);
+                
+            }, 1000);
+        }
+        window.addEventListener('load', doTest, false);
+    </script>
+</head>
+<body>
+    <p>On a two-monitor system, configure the menu bar to be on the right screen. Then drag this window between screens. When on the left screen, screen.availLeft should be negative.</p>
+    <div id="output"></div>
+</body>
+</html>

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list