Title: [94595] trunk/LayoutTests
Revision
94595
Author
[email protected]
Date
2011-09-06 13:41:58 -0700 (Tue, 06 Sep 2011)

Log Message

Update some layout test results following the improved Pair parsing code that landed in r94593.

* fast/backgrounds/size/parsing-background-size-values-expected.txt:
* fast/backgrounds/size/resources/parsing-background-size-values.js:
* fast/reflections/reflection-computed-style-expected.txt:
* inspector/elements/elements-panel-styles-expected.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (94594 => 94595)


--- trunk/LayoutTests/ChangeLog	2011-09-06 20:37:51 UTC (rev 94594)
+++ trunk/LayoutTests/ChangeLog	2011-09-06 20:41:58 UTC (rev 94595)
@@ -1,3 +1,12 @@
+2011-09-06  David Hyatt  <[email protected]>
+
+        Update some layout test results following the improved Pair parsing code that landed in r94593.
+
+        * fast/backgrounds/size/parsing-background-size-values-expected.txt:
+        * fast/backgrounds/size/resources/parsing-background-size-values.js:
+        * fast/reflections/reflection-computed-style-expected.txt:
+        * inspector/elements/elements-panel-styles-expected.txt:
+
 2011-09-06  Filip Pizlo  <[email protected]>
 
         LayoutTests does not include a test for DFG speculation recovery of additions

Modified: trunk/LayoutTests/fast/backgrounds/size/parsing-background-size-values-expected.txt (94594 => 94595)


--- trunk/LayoutTests/fast/backgrounds/size/parsing-background-size-values-expected.txt	2011-09-06 20:37:51 UTC (rev 94594)
+++ trunk/LayoutTests/fast/backgrounds/size/parsing-background-size-values-expected.txt	2011-09-06 20:41:58 UTC (rev 94595)
@@ -5,22 +5,22 @@
 
 PASS test("background-size: contain;") is "contain"
 PASS test("background-size: cover;") is "cover"
-PASS test("background-size: 100 100;") is "100px 100px"
-PASS test("background-size: 100px 100px;") is "100px 100px"
+PASS test("background-size: 100 100;") is "100px"
+PASS test("background-size: 100px 100px;") is "100px"
 PASS test("background-size: auto 50px;") is " 50px"
 PASS test("background-size: 50px auto;") is "50px "
 PASS test("background-size: auto auto;") is " "
 PASS test("background-size: 30% 20%;") is "30% 20%"
 PASS test("background-size: 4em auto;") is "4em "
 PASS test("background-size: 5em;") is "5em "
-PASS test("-webkit-background-size: 5em ;") is "5em 5em"
+PASS test("-webkit-background-size: 5em ;") is "5em"
 PASS test("background-size: 100 100 100;") is null
 PASS test("background-size: coconut;") is null
 PASS test("background-size: 100px,;") is null
 PASS test("background-size: 100px, 50%;") is "100px , 50% "
-PASS test("-webkit-background-size: 100px, 50%;") is "100px 100px, 50% 50%"
+PASS test("-webkit-background-size: 100px, 50%;") is "100px, 50%"
 PASS test("background-size: 50% 100px, 2em, 100px 50%;") is "50% 100px, 2em , 100px 50%"
-PASS test("-webkit-background-size: 50% 100px, 2em, 100px 50%;") is "50% 100px, 2em 2em, 100px 50%"
+PASS test("-webkit-background-size: 50% 100px, 2em, 100px 50%;") is "50% 100px, 2em, 100px 50%"
 PASS successfullyParsed is true
 
 TEST COMPLETE

Modified: trunk/LayoutTests/fast/backgrounds/size/resources/parsing-background-size-values.js (94594 => 94595)


--- trunk/LayoutTests/fast/backgrounds/size/resources/parsing-background-size-values.js	2011-09-06 20:37:51 UTC (rev 94594)
+++ trunk/LayoutTests/fast/backgrounds/size/resources/parsing-background-size-values.js	2011-09-06 20:41:58 UTC (rev 94595)
@@ -13,23 +13,23 @@
 
 shouldBe('test("background-size: contain;")', '"contain"');
 shouldBe('test("background-size: cover;")', '"cover"');
-shouldBe('test("background-size: 100 100;")', '"100px 100px"');
-shouldBe('test("background-size: 100px 100px;")', '"100px 100px"');
+shouldBe('test("background-size: 100 100;")', '"100px"');
+shouldBe('test("background-size: 100px 100px;")', '"100px"');
 shouldBe('test("background-size: auto 50px;")', '" 50px"');
 shouldBe('test("background-size: 50px auto;")', '"50px "');
 shouldBe('test("background-size: auto auto;")', '" "');
 shouldBe('test("background-size: 30% 20%;")', '"30% 20%"');
 shouldBe('test("background-size: 4em auto;")', '"4em "');
 shouldBe('test("background-size: 5em;")', '"5em "');
-shouldBe('test("-webkit-background-size: 5em ;")', '"5em 5em"');
+shouldBe('test("-webkit-background-size: 5em ;")', '"5em"');
 
 shouldBe('test("background-size: 100 100 100;")', 'null');
 shouldBe('test("background-size: coconut;")', 'null');
 
 shouldBe('test("background-size: 100px,;")', 'null');
 shouldBe('test("background-size: 100px, 50%;")', '"100px , 50% "');
-shouldBe('test("-webkit-background-size: 100px, 50%;")', '"100px 100px, 50% 50%"');
+shouldBe('test("-webkit-background-size: 100px, 50%;")', '"100px, 50%"');
 shouldBe('test("background-size: 50% 100px, 2em, 100px 50%;")', '"50% 100px, 2em , 100px 50%"');
-shouldBe('test("-webkit-background-size: 50% 100px, 2em, 100px 50%;")', '"50% 100px, 2em 2em, 100px 50%"');
+shouldBe('test("-webkit-background-size: 50% 100px, 2em, 100px 50%;")', '"50% 100px, 2em, 100px 50%"');
 
 var successfullyParsed = true;

Modified: trunk/LayoutTests/fast/reflections/reflection-computed-style-expected.txt (94594 => 94595)


--- trunk/LayoutTests/fast/reflections/reflection-computed-style-expected.txt	2011-09-06 20:37:51 UTC (rev 94594)
+++ trunk/LayoutTests/fast/reflections/reflection-computed-style-expected.txt	2011-09-06 20:41:58 UTC (rev 94595)
@@ -17,6 +17,6 @@
 
 -webkit-box-reflect: below 5px -webkit-gradient(linear, 0 0, 0 0) 25 25 25 25 stretch stretch;
   -webkit-box-reflect
-    getPropertyValue:    below 5px -webkit-gradient(linear, 0 0, 0 0) 25 fill stretch stretch
+    getPropertyValue:    below 5px -webkit-gradient(linear, 0 0, 0 0) 25 fill / auto stretch
     getPropertyCSSValue: [object CSSValue]
 

Modified: trunk/LayoutTests/inspector/elements/elements-panel-styles-expected.txt (94594 => 94595)


--- trunk/LayoutTests/inspector/elements/elements-panel-styles-expected.txt	2011-09-06 20:37:51 UTC (rev 94594)
+++ trunk/LayoutTests/inspector/elements/elements-panel-styles-expected.txt	2011-09-06 20:41:58 UTC (rev 94595)
@@ -2,13 +2,13 @@
 
 [expanded]  ()
 border-bottom-left-radius: 5px;
-    .foo - 5px 5px elements-panel-styles.css:14
+    .foo - 5px elements-panel-styles.css:14
 border-bottom-right-radius: 5px;
-    .foo - 5px 5px elements-panel-styles.css:14
+    .foo - 5px elements-panel-styles.css:14
 border-top-left-radius: 5px;
-    .foo - 5px 5px elements-panel-styles.css:14
+    .foo - 5px elements-panel-styles.css:14
 border-top-right-radius: 5px;
-    .foo - 5px 5px elements-panel-styles.css:14
+    .foo - 5px elements-panel-styles.css:14
 color: blue;
     .foo, .foo::before - blue elements-panel-styles.css:21
     /-- overloaded --/ .foo - black elements-panel-styles.css:14
@@ -55,10 +55,10 @@
     margin-bottom: 2px;
     margin-left: 0px;
 border-radius: 5px;
-    border-top-left-radius: 5px 5px;
-    border-top-right-radius: 5px 5px;
-    border-bottom-right-radius: 5px 5px;
-    border-bottom-left-radius: 5px 5px;
+    border-top-left-radius: 5px;
+    border-top-right-radius: 5px;
+    border-bottom-right-radius: 5px;
+    border-bottom-left-radius: 5px;
 /-- overloaded --/ font-style: normal !important;
 
 [expanded] div[align=left] { ()
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to