Title: [100451] trunk/LayoutTests
Revision
100451
Author
apav...@chromium.org
Date
2011-11-16 07:57:02 -0800 (Wed, 16 Nov 2011)

Log Message

Unreviewed, test fix after http://trac.webkit.org/changeset/100273.

"font" property is no longer mapped to DOMCSSValue, so use "font-family" mapped to DOMCSSValueList instead.

* platform/mac/plugins/jsobjc-dom-wrappers-expected.txt:
* platform/mac/plugins/jsobjc-dom-wrappers.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (100450 => 100451)


--- trunk/LayoutTests/ChangeLog	2011-11-16 15:52:43 UTC (rev 100450)
+++ trunk/LayoutTests/ChangeLog	2011-11-16 15:57:02 UTC (rev 100451)
@@ -1,3 +1,12 @@
+2011-11-16  Alexander Pavlov  <apav...@chromium.org>
+
+        Unreviewed, test fix after http://trac.webkit.org/changeset/100273.
+
+        "font" property is no longer mapped to DOMCSSValue, so use "font-family" mapped to DOMCSSValueList instead.
+
+        * platform/mac/plugins/jsobjc-dom-wrappers-expected.txt:
+        * platform/mac/plugins/jsobjc-dom-wrappers.html:
+
 2011-11-16  Balazs Kelemen  <kbal...@webkit.org>
 
         [Qt] inspector/elements/elements-panel-selection-on-refresh.html crashing

Modified: trunk/LayoutTests/platform/mac/plugins/jsobjc-dom-wrappers-expected.txt (100450 => 100451)


--- trunk/LayoutTests/platform/mac/plugins/jsobjc-dom-wrappers-expected.txt	2011-11-16 15:52:43 UTC (rev 100450)
+++ trunk/LayoutTests/platform/mac/plugins/jsobjc-dom-wrappers-expected.txt	2011-11-16 15:57:02 UTC (rev 100451)
@@ -14,6 +14,6 @@
 
 document.styleSheets[0].cssRules[0].style == DOMCSSStyleDeclaration ? -> PASS
 
-document.styleSheets[0].cssRules[0].style.getPropertyCSSValue("font") == DOMCSSValue ? -> PASS
+document.styleSheets[0].cssRules[0].style.getPropertyCSSValue("font-family") == DOMCSSValueList ? -> PASS
 
 document.styleSheets[0].cssRules[0].style.getPropertyCSSValue("width") == DOMCSSPrimitiveValue ? -> PASS

Modified: trunk/LayoutTests/platform/mac/plugins/jsobjc-dom-wrappers.html (100450 => 100451)


--- trunk/LayoutTests/platform/mac/plugins/jsobjc-dom-wrappers.html	2011-11-16 15:52:43 UTC (rev 100450)
+++ trunk/LayoutTests/platform/mac/plugins/jsobjc-dom-wrappers.html	2011-11-16 15:57:02 UTC (rev 100451)
@@ -1,7 +1,7 @@
 <html>
 <head><title> wrappers.html </title>
 <style>
-    BODY { font: 11px 'Lucida Grande'; width: 90%; padding: 10px; }
+    BODY { font-family: 'Lucida Grande'; width: 90%; padding: 10px; }
     .box { border: 1px solid gray; background-color: #EEE; margin: 10px; }
 </style>
 <script>
@@ -33,7 +33,7 @@
     check('document.styleSheets[0].cssRules', 'DOMCSSRuleList');
     check('document.styleSheets[0].cssRules[0]', 'DOMCSSStyleRule');
     check('document.styleSheets[0].cssRules[0].style', 'DOMCSSStyleDeclaration');
-    check('document.styleSheets[0].cssRules[0].style.getPropertyCSSValue("font")', 'DOMCSSValue');
+    check('document.styleSheets[0].cssRules[0].style.getPropertyCSSValue("font-family")', 'DOMCSSValueList');
     check('document.styleSheets[0].cssRules[0].style.getPropertyCSSValue("width")', 'DOMCSSPrimitiveValue');
     
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to