Title: [146181] trunk/LayoutTests
Revision
146181
Author
[email protected]
Date
2013-03-18 23:17:07 -0700 (Mon, 18 Mar 2013)

Log Message

Change icon-url-property test for platforms which don't support dumpIconChanges.
https://bugs.webkit.org/show_bug.cgi?id=112660

Reviewed by Simon Fraser.

Add the baseline for mac and remove the test failure.

* fast/dom/icon-url-property.html:
* platform/mac/TestExpectations:
* platform/mac/fast/dom/icon-url-property-expected.txt: Added.

Modified Paths

Added Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (146180 => 146181)


--- trunk/LayoutTests/ChangeLog	2013-03-19 05:41:07 UTC (rev 146180)
+++ trunk/LayoutTests/ChangeLog	2013-03-19 06:17:07 UTC (rev 146181)
@@ -1,3 +1,16 @@
+2013-03-18  David Levin  <[email protected]>
+
+        Change icon-url-property test for platforms which don't support dumpIconChanges.
+        https://bugs.webkit.org/show_bug.cgi?id=112660
+
+        Reviewed by Simon Fraser.
+
+        Add the baseline for mac and remove the test failure.
+
+        * fast/dom/icon-url-property.html:
+        * platform/mac/TestExpectations:
+        * platform/mac/fast/dom/icon-url-property-expected.txt: Added.
+
 2013-03-18  Simon Fraser  <[email protected]>
 
         Media playhead button is sometimes 1px wider: media/video-playing-and-pause.html flakey

Modified: trunk/LayoutTests/fast/dom/icon-url-property.html (146180 => 146181)


--- trunk/LayoutTests/fast/dom/icon-url-property.html	2013-03-19 05:41:07 UTC (rev 146180)
+++ trunk/LayoutTests/fast/dom/icon-url-property.html	2013-03-19 06:17:07 UTC (rev 146181)
@@ -31,7 +31,8 @@
 function runTests() {
     if (window.testRunner) {
         testRunner.dumpAsText();
-        testRunner.dumpIconChanges();
+        if (testRunner.dumpIconChanges)
+            testRunner.dumpIconChanges();
     }
 
     iconURL = document.getElementsByTagName("head")[0].getElementsByTagName("link")[0].href;

Modified: trunk/LayoutTests/platform/mac/TestExpectations (146180 => 146181)


--- trunk/LayoutTests/platform/mac/TestExpectations	2013-03-19 05:41:07 UTC (rev 146180)
+++ trunk/LayoutTests/platform/mac/TestExpectations	2013-03-19 06:17:07 UTC (rev 146181)
@@ -1516,6 +1516,3 @@
 
 # Feature not implemented
 webkit.org/b/91611 media/media-higher-prio-audio-stream.html [ Skip ]
-
-# Fails in WK1, dumpIconChanges missing in WK2.
-webkit.org/b/112647 fast/dom/icon-url-property.html [ Failure ]

Added: trunk/LayoutTests/platform/mac/fast/dom/icon-url-property-expected.txt (0 => 146181)


--- trunk/LayoutTests/platform/mac/fast/dom/icon-url-property-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/mac/fast/dom/icon-url-property-expected.txt	2013-03-19 06:17:07 UTC (rev 146181)
@@ -0,0 +1,4 @@
+Original iconURL is: http://test.com/oldfavicon.ico
+Setting new icon URL to: http://test.com/newfavicon.ico
+New iconURL is: http://test.com/newfavicon.ico
+PASS - URL list matches expected
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to