diff options
author | olehougaard@google.com <olehougaard@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-17 09:28:39 +0000 |
---|---|---|
committer | olehougaard@google.com <olehougaard@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-17 09:28:39 +0000 |
commit | 34659e40537fb8b36983cad7bf3a1b77ae13703b (patch) | |
tree | 04137347f57d0854281fc77946a46b7f66c752d3 | |
parent | 7e893ce8d979e2280c734c10855aaa7e670b7772 (diff) | |
download | chromium_src-34659e40537fb8b36983cad7bf3a1b77ae13703b.zip chromium_src-34659e40537fb8b36983cad7bf3a1b77ae13703b.tar.gz chromium_src-34659e40537fb8b36983cad7bf3a1b77ae13703b.tar.bz2 |
Rebaselining LayoutTests/css3/transform-value-types.html to deal with implementation dependent printing of constructors and prototypes.
Review URL: http://codereview.chromium.org/7620
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3523 0039d316-1c4b-4281-b951-d872f2087c98
3 files changed, 35 insertions, 1 deletions
diff --git a/webkit/data/layout_test_results/v8/LayoutTests/css3/README b/webkit/data/layout_test_results/v8/LayoutTests/css3/README new file mode 100644 index 0000000..c75077f --- /dev/null +++ b/webkit/data/layout_test_results/v8/LayoutTests/css3/README @@ -0,0 +1,4 @@ +transform-value-types +-------------------------- +The printing of prototype objects and constructors is implementation dependent. +We print these differently from KJS which is harmless. diff --git a/webkit/data/layout_test_results/v8/LayoutTests/css3/transform-value-types-expected.txt b/webkit/data/layout_test_results/v8/LayoutTests/css3/transform-value-types-expected.txt new file mode 100644 index 0000000..5373848 --- /dev/null +++ b/webkit/data/layout_test_results/v8/LayoutTests/css3/transform-value-types-expected.txt @@ -0,0 +1,31 @@ +PASS jsWrapperClass(transformRule) is 'CSSValueList' +FAIL jsWrapperClass(transformRule.__proto__) should be CSSValueListPrototype. Was Object. +FAIL jsWrapperClass(transformRule.constructor) should be CSSValueListConstructor. Was Function. +PASS jsWrapperClass(transformRule[0]) is 'WebKitCSSTransformValue' +FAIL jsWrapperClass(transformRule[0].__proto__) should be WebKitCSSTransformValuePrototype. Was Object. +FAIL jsWrapperClass(transformRule[0].constructor) should be WebKitCSSTransformValueConstructor. Was Function. +PASS transformRule[0].operationType is 1 +PASS transformRule[0].cssText is 'translate(10px)' +PASS transformRule[1].operationType is 2 +PASS transformRule[1].cssText is 'translateX(10px)' +PASS transformRule[2].operationType is 3 +PASS transformRule[2].cssText is 'translateY(10px)' +PASS transformRule[3].operationType is 4 +PASS transformRule[3].cssText is 'rotate(10deg)' +PASS transformRule[4].operationType is 5 +PASS transformRule[4].cssText is 'scale(2)' +PASS transformRule[5].operationType is 6 +PASS transformRule[5].cssText is 'scaleX(1.2)' +PASS transformRule[6].operationType is 7 +PASS transformRule[6].cssText is 'scaleY(1.2)' +PASS transformRule[7].operationType is 8 +PASS transformRule[7].cssText is 'skew(10deg, 10rad)' +PASS transformRule[8].operationType is 9 +PASS transformRule[8].cssText is 'skewX(10deg)' +PASS transformRule[9].operationType is 10 +PASS transformRule[9].cssText is 'skewY(11grad)' +PASS transformRule[10].operationType is 11 +PASS transformRule[10].cssText is 'matrix(1, 0, 0, 1, 0, 0)' +PASS successfullyParsed is true + +TEST COMPLETE diff --git a/webkit/tools/layout_tests/test_lists/tests_fixable.txt b/webkit/tools/layout_tests/test_lists/tests_fixable.txt index 3be7047..e15792a 100644 --- a/webkit/tools/layout_tests/test_lists/tests_fixable.txt +++ b/webkit/tools/layout_tests/test_lists/tests_fixable.txt @@ -864,7 +864,6 @@ V8 | KJS # LayoutTests/editing/selection/move-left-right.html = FAIL // ---------------------------------------------------------------------------- V8 | KJS # LayoutTests/accessibility = FAIL -V8 | KJS # LayoutTests/css3/transform-value-types.html = FAIL V8 | KJS # LayoutTests/dom/html/level2/html/HTMLFormElement10.html = FAIL | TIMEOUT V8 | KJS # LayoutTests/editing/pasteboard/5780697-2.html = FAIL V8 | KJS # LayoutTests/fast/backgrounds/background-origin-root-element.html = FAIL |