[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.19-706-ge5415e9

tkent at chromium.org tkent at chromium.org
Thu Feb 4 21:36:05 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit f18cff7ae53ab918c6b2ef04e003fe0541ce10eb
Author: tkent at chromium.org <tkent at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Feb 2 04:48:52 2010 +0000

    2010-02-01  Kent Tamura  <tkent at chromium.org>
    
            Unreviewed. Add two more test cases which I forgot to add in r54197.
            https://bugs.webkit.org/show_bug.cgi?id=34462
    
            * fast/js/math-expected.txt:
            * fast/js/script-tests/math.js:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@54198 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 7b15d44..66031b0 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,5 +1,13 @@
 2010-02-01  Kent Tamura  <tkent at chromium.org>
 
+        Unreviewed. Add two more test cases which I forgot to add in r54197.
+        https://bugs.webkit.org/show_bug.cgi?id=34462
+
+        * fast/js/math-expected.txt:
+        * fast/js/script-tests/math.js:
+
+2010-02-01  Kent Tamura  <tkent at chromium.org>
+
         Reviewed by Darin Adler.
 
         Fix a bug that Math.round() retunrs incorrect results for huge integers
diff --git a/LayoutTests/fast/js/math-expected.txt b/LayoutTests/fast/js/math-expected.txt
index 1b533e5..118432a 100644
--- a/LayoutTests/fast/js/math-expected.txt
+++ b/LayoutTests/fast/js/math-expected.txt
@@ -136,11 +136,13 @@ PASS Math.round(8640000000000001) is 8640000000000001
 PASS Math.round(8640000000000002) is 8640000000000002
 PASS Math.round(9007199254740990) is 9007199254740990
 PASS Math.round(9007199254740991) is 9007199254740991
+PASS Math.round(1.7976931348623157e+308) is 1.7976931348623157e+308
 PASS Math.round(-8640000000000000) is -8640000000000000
 PASS Math.round(-8640000000000001) is -8640000000000001
 PASS Math.round(-8640000000000002) is -8640000000000002
 PASS Math.round(-9007199254740990) is -9007199254740990
 PASS Math.round(-9007199254740991) is -9007199254740991
+PASS Math.round(-1.7976931348623157e+308) is -1.7976931348623157e+308
 PASS Math.round(Infinity) is Infinity
 PASS Math.round(-Infinity) is -Infinity
 PASS Math.sin(NaN) is NaN
diff --git a/LayoutTests/fast/js/script-tests/math.js b/LayoutTests/fast/js/script-tests/math.js
index d6163db..968587a 100644
--- a/LayoutTests/fast/js/script-tests/math.js
+++ b/LayoutTests/fast/js/script-tests/math.js
@@ -198,11 +198,13 @@ shouldBe("Math.round(8640000000000001)", "8640000000000001");
 shouldBe("Math.round(8640000000000002)", "8640000000000002");
 shouldBe("Math.round(9007199254740990)", "9007199254740990");
 shouldBe("Math.round(9007199254740991)", "9007199254740991");
+shouldBe("Math.round(1.7976931348623157e+308)", "1.7976931348623157e+308");
 shouldBe("Math.round(-8640000000000000)", "-8640000000000000");
 shouldBe("Math.round(-8640000000000001)", "-8640000000000001");
 shouldBe("Math.round(-8640000000000002)", "-8640000000000002");
 shouldBe("Math.round(-9007199254740990)", "-9007199254740990");
 shouldBe("Math.round(-9007199254740991)", "-9007199254740991");
+shouldBe("Math.round(-1.7976931348623157e+308)", "-1.7976931348623157e+308");
 shouldBe("Math.round(Infinity)", "Infinity");
 shouldBe("Math.round(-Infinity)", "-Infinity");
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list