[SCM] WebKit Debian packaging branch, debian/experimental, updated. debian/1.3.8-1-1049-g2e11a8e

simon.fraser at apple.com simon.fraser at apple.com
Fri Jan 21 15:13:12 UTC 2011


The following commit has been merged in the debian/experimental branch:
commit 602d2035426033a6fa51b481341b6be2f65e1721
Author: simon.fraser at apple.com <simon.fraser at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Jan 9 19:24:23 2011 +0000

    2011-01-09  Simon Fraser  <simon.fraser at apple.com>
    
            Fix test after r75352.
    
            Per HTML5, the disabled IDL attribute for style elements is not reflected
            in the content attribute.
    
            * fast/dom/boolean-attribute-reflection-expected.txt:
            * fast/dom/script-tests/boolean-attribute-reflection.js:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@75354 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 129bc70..c6155d7 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,13 @@
+2011-01-09  Simon Fraser  <simon.fraser at apple.com>
+
+        Fix test after r75352.
+        
+        Per HTML5, the disabled IDL attribute for style elements is not reflected
+        in the content attribute.
+
+        * fast/dom/boolean-attribute-reflection-expected.txt:
+        * fast/dom/script-tests/boolean-attribute-reflection.js:
+
 2011-01-08  Simon Fraser  <simon.fraser at apple.com>
 
         Reviewed by Alexey Proskuryakov.
diff --git a/LayoutTests/fast/dom/boolean-attribute-reflection-expected.txt b/LayoutTests/fast/dom/boolean-attribute-reflection-expected.txt
index 08a9449..c50eb6f 100644
--- a/LayoutTests/fast/dom/boolean-attribute-reflection-expected.txt
+++ b/LayoutTests/fast/dom/boolean-attribute-reflection-expected.txt
@@ -91,10 +91,6 @@ PASS e = make('select'); e.removeAttribute('multiple'); e.multiple is false
 PASS e = make('select'); e.setAttribute('multiple', ''); e.multiple is true
 PASS e = make('select'); e.setAttribute('multiple', 'x'); e.multiple = false; e.getAttribute('multiple') is null
 PASS e = make('select'); e.setAttribute('multiple', 'x'); e.multiple = true; e.getAttribute('multiple') is ''
-PASS e = make('style'); e.removeAttribute('disabled'); e.disabled is false
-PASS e = make('style'); e.setAttribute('disabled', ''); e.disabled is true
-PASS e = make('style'); e.setAttribute('disabled', 'x'); e.disabled = false; e.getAttribute('disabled') is null
-PASS e = make('style'); e.setAttribute('disabled', 'x'); e.disabled = true; e.getAttribute('disabled') is ''
 PASS e = make('td'); e.removeAttribute('nowrap'); e.noWrap is false
 PASS e = make('td'); e.setAttribute('nowrap', ''); e.noWrap is true
 PASS e = make('td'); e.setAttribute('nowrap', 'x'); e.noWrap = false; e.getAttribute('nowrap') is null
diff --git a/LayoutTests/fast/dom/script-tests/boolean-attribute-reflection.js b/LayoutTests/fast/dom/script-tests/boolean-attribute-reflection.js
index ba7cdf6..c2527f0 100644
--- a/LayoutTests/fast/dom/script-tests/boolean-attribute-reflection.js
+++ b/LayoutTests/fast/dom/script-tests/boolean-attribute-reflection.js
@@ -23,7 +23,6 @@ var attributes = [
     [ "pre", "wrap" ],
     [ "script", "defer" ],
     [ "select", "multiple" ],
-    [ "style", "disabled" ],
     [ "td", "noWrap" ],
     [ "ul", "compact" ],
     [ "video", "autoplay" ],

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list