[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.22-985-g3c00f00
eric.carlson at apple.com
eric.carlson at apple.com
Wed Mar 17 18:12:41 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit f9b5104c1fbab49517e972fb0f0e36afe05a31c2
Author: eric.carlson at apple.com <eric.carlson at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Wed Mar 3 19:05:23 2010 +0000
2010-03-03 Eric Carlson <eric.carlson at apple.com>
Unreviewed, build fix.
Update expected results for fast/js/custom-constructors-expected.txt
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55468 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 165aa2b..0e48545 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,9 @@
+2010-03-03 Eric Carlson <eric.carlson at apple.com>
+
+ Unreviewed, build fix.
+
+ Update expected results for fast/js/custom-constructors-expected.txt
+
2010-03-03 Chris Marrin <cmarrin at apple.com>
Reviewed by Simon Fraser.
diff --git a/LayoutTests/fast/js/custom-constructors-expected.txt b/LayoutTests/fast/js/custom-constructors-expected.txt
index e082d10..74fa183 100644
--- a/LayoutTests/fast/js/custom-constructors-expected.txt
+++ b/LayoutTests/fast/js/custom-constructors-expected.txt
@@ -39,9 +39,9 @@ PASS new Option('somedata', 'somevalue', true).outerHTML.replace(/"/g,"'") is "<
PASS new Audio() is non-null.
PASS new Audio().tagName is "AUDIO"
PASS new Audio().src is ""
-PASS new Audio().autobuffer is true
+PASS new Audio().preload is "auto"
PASS new Audio('http://localhost/someurl').src is "http://localhost/someurl"
-PASS new Audio('http://localhost/someurl').autobuffer is true
+PASS new Audio('http://localhost/someurl').preload is "auto"
PASS successfullyParsed is true
TEST COMPLETE
diff --git a/LayoutTests/fast/js/script-tests/custom-constructors.js b/LayoutTests/fast/js/script-tests/custom-constructors.js
index 2945e57..fce3ab4 100644
--- a/LayoutTests/fast/js/script-tests/custom-constructors.js
+++ b/LayoutTests/fast/js/script-tests/custom-constructors.js
@@ -52,8 +52,8 @@ shouldBeNonNull("new Audio()");
shouldBeEqualToString("new Audio().tagName", "AUDIO");
shouldBeEqualToString("new Audio().src", "");
-shouldBeTrue("new Audio().autobuffer");
+shouldBeEqualToString("new Audio().preload", "auto");
shouldBeEqualToString("new Audio('http://localhost/someurl').src", "http://localhost/someurl");
-shouldBeTrue("new Audio('http://localhost/someurl').autobuffer");
+shouldBeEqualToString("new Audio('http://localhost/someurl').preload", "auto");
var successfullyParsed = true;
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list