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

rniwa at webkit.org rniwa at webkit.org
Wed Dec 22 14:29:13 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 2eaf405babe9ad082d7affffc393730aa6036f11
Author: rniwa at webkit.org <rniwa at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Oct 11 19:00:22 2010 +0000

    2010-10-11  Ryosuke Niwa  <rniwa at webkit.org>
    
            Unreviewed build fix.
    
            Fixed design-mode-spellcheck-off.html so that it passes on platforms that do not support textInputController.
    
            * editing/spelling/design-mode-spellcheck-off.html:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@69513 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index e06e55d..7231426 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,5 +1,13 @@
 2010-10-11  Ryosuke Niwa  <rniwa at webkit.org>
 
+        Unreviewed build fix.
+
+        Fixed design-mode-spellcheck-off.html so that it passes on platforms that do not support textInputController.
+
+        * editing/spelling/design-mode-spellcheck-off.html:
+
+2010-10-11  Ryosuke Niwa  <rniwa at webkit.org>
+
         Reviewed by Darin Adler.
 
         spellcheck="false" not respected in designMode
diff --git a/LayoutTests/editing/spelling/design-mode-spellcheck-off.html b/LayoutTests/editing/spelling/design-mode-spellcheck-off.html
index 0b5ad28..30ce58d 100644
--- a/LayoutTests/editing/spelling/design-mode-spellcheck-off.html
+++ b/LayoutTests/editing/spelling/design-mode-spellcheck-off.html
@@ -18,7 +18,7 @@ else if (window.layoutTestController && window.eventSender) {
     document.body.addEventListener('mousedown', function() {
         if (document.activeElement != document.body)
             document.body.appendChild(document.createTextNode('FAIL: active element after click is not body element'));
-        else if (textInputController && textInputController.hasSpellingMarker && textInputController.hasSpellingMarker(0, 4))
+        else if (window.textInputController && textInputController.hasSpellingMarker && textInputController.hasSpellingMarker(0, 4))
             document.body.appendChild(document.createTextNode('FAIL: spell check was invoked'));
         else
             document.body.appendChild(document.createTextNode('PASS'));

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list