[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.17-1283-gcf603cf
eric at webkit.org
eric at webkit.org
Tue Jan 5 23:44:51 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 64742ff82543703b16bfd87ceba48e188b01daf6
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Tue Dec 8 15:33:37 2009 +0000
2009-12-08 Kent Tamura <tkent at chromium.org>
Reviewed by Darin Adler.
These test results should not have platform-dependent pixel values.
https://bugs.webkit.org/show_bug.cgi?id=32265
Change is75PercentOf() so that it doesn't show pixel values when
the check is passed.
* fast/replaced/table-percent-height-expected.txt:
* fast/replaced/table-percent-height-text-controls-expected.txt:
* fast/replaced/table-percent-height-text-controls.html:
* fast/replaced/table-percent-height.html:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51852 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 1024036..b63168d 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,18 @@
+2009-12-08 Kent Tamura <tkent at chromium.org>
+
+ Reviewed by Darin Adler.
+
+ These test results should not have platform-dependent pixel values.
+ https://bugs.webkit.org/show_bug.cgi?id=32265
+
+ Change is75PercentOf() so that it doesn't show pixel values when
+ the check is passed.
+
+ * fast/replaced/table-percent-height-expected.txt:
+ * fast/replaced/table-percent-height-text-controls-expected.txt:
+ * fast/replaced/table-percent-height-text-controls.html:
+ * fast/replaced/table-percent-height.html:
+
2009-12-08 Carol Szabo <carol.szabo at nokia.com>
Reviewed by Darin Adler.
diff --git a/LayoutTests/fast/replaced/table-percent-height-expected.txt b/LayoutTests/fast/replaced/table-percent-height-expected.txt
index 593012e..c0d6447 100644
--- a/LayoutTests/fast/replaced/table-percent-height-expected.txt
+++ b/LayoutTests/fast/replaced/table-percent-height-expected.txt
@@ -51,17 +51,17 @@ PASS getHeight('input-button-75') != '0px' is true
PASS getHeight('input-button-75') is getHeight('input-button-100')
PASS getWidth('input-checkbox-75') is getWidth('input-checkbox-100')
PASS getHeight('input-checkbox-75') != '0px' is true
-PASS getHeight('input-checkbox-75') [4px] is 75% of getHeight('input-checkbox-100') [6px].
+PASS getHeight('input-checkbox-75') is 75% of getHeight('input-checkbox-100').
PASS getWidth('input-file-75') is getWidth('input-file-100')
PASS getHeight('input-file-75') != '0px' is true
-PASS getHeight('input-file-75') [13px] is 75% of getHeight('input-file-100') [18px].
+PASS getHeight('input-file-75') is 75% of getHeight('input-file-100').
PASS getWidth('input-image-75') is '75px'
PASS getHeight('input-image-75') is '75px'
PASS getWidth('input-image-100') is '100px'
PASS getHeight('input-image-100') is '100px'
PASS getWidth('input-radio-75') is getWidth('input-radio-100')
PASS getHeight('input-radio-75') != '0px' is true
-PASS getHeight('input-radio-75') [4px] is 75% of getHeight('input-radio-100') [6px].
+PASS getHeight('input-radio-75') is 75% of getHeight('input-radio-100').
PASS getWidth('input-reset-75') is getWidth('input-reset-100')
PASS getHeight('input-reset-75') != '0px' is true
PASS getHeight('input-reset-75') is getHeight('input-reset-100')
diff --git a/LayoutTests/fast/replaced/table-percent-height-text-controls-expected.txt b/LayoutTests/fast/replaced/table-percent-height-text-controls-expected.txt
index 170df51..5b9e561 100644
--- a/LayoutTests/fast/replaced/table-percent-height-text-controls-expected.txt
+++ b/LayoutTests/fast/replaced/table-percent-height-text-controls-expected.txt
@@ -13,16 +13,16 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
PASS getWidth('input-password-75') is getWidth('input-password-100')
PASS getFullHeight('input-password-75') != '0px' is true
-PASS getFullHeight('input-password-75') [14px] is 75% of getFullHeight('input-password-100') [19px].
+PASS getFullHeight('input-password-75') is 75% of getFullHeight('input-password-100').
PASS getWidth('input-text-75') is getWidth('input-text-100')
PASS getFullHeight('input-text-75') != '0px' is true
-PASS getFullHeight('input-text-75') [14px] is 75% of getFullHeight('input-text-100') [19px].
+PASS getFullHeight('input-text-75') is 75% of getFullHeight('input-text-100').
PASS getWidth('isindex-75') is getWidth('isindex-100')
PASS getFullHeight('isindex-75') != '0px' is true
PASS getFullHeight('isindex-75') is getFullHeight('isindex-100')
PASS getWidth('textarea-75') is getWidth('textarea-100')
PASS getFullHeight('textarea-75') != '0px' is true
-PASS getFullHeight('textarea-75') [24px] is 75% of getFullHeight('textarea-100') [32px].
+PASS getFullHeight('textarea-75') is 75% of getFullHeight('textarea-100').
PASS successfullyParsed is true
TEST COMPLETE
diff --git a/LayoutTests/fast/replaced/table-percent-height-text-controls.html b/LayoutTests/fast/replaced/table-percent-height-text-controls.html
index 7713a32..af0a91d 100644
--- a/LayoutTests/fast/replaced/table-percent-height-text-controls.html
+++ b/LayoutTests/fast/replaced/table-percent-height-text-controls.html
@@ -58,7 +58,7 @@ function is75PercentOf(expression75, expression100)
if (num75 < 0 || num100 < 0)
return;
if (num75 == Math.floor(num100 * 75 / 100))
- testPassed(expression75 + " [" + str75 + "] is 75% of " + expression100 + " [" + str100 + "].");
+ testPassed(expression75 + " is 75% of " + expression100 + ".");
else
testFailed(expression75 + " [" + str75 + "] is not 75% of " + expression100 + " [" + str100 + "].");
}
diff --git a/LayoutTests/fast/replaced/table-percent-height.html b/LayoutTests/fast/replaced/table-percent-height.html
index f8166bf..42e49f8 100644
--- a/LayoutTests/fast/replaced/table-percent-height.html
+++ b/LayoutTests/fast/replaced/table-percent-height.html
@@ -52,7 +52,7 @@ function is75PercentOf(expression75, expression100)
if (num75 < 0 || num100 < 0)
return;
if (num75 == Math.floor(num100 * 75 / 100))
- testPassed(expression75 + " [" + str75 + "] is 75% of " + expression100 + " [" + str100 + "].");
+ testPassed(expression75 + " is 75% of " + expression100 + ".");
else
testFailed(expression75 + " [" + str75 + "] is not 75% of " + expression100 + " [" + str100 + "].");
}
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list