| Index: LayoutTests/css3/compositing/script-tests/blend-mode-property-parsing.js
|
| diff --git a/LayoutTests/css3/compositing/script-tests/blend-mode-property-parsing.js b/LayoutTests/css3/compositing/script-tests/blend-mode-property-parsing.js
|
| index 29a1da4f37a0cd1b1e8a92e4d617fc0f76762b4a..4388815b5c03b335cd81b0cd2dac136cb19b3b09 100644
|
| --- a/LayoutTests/css3/compositing/script-tests/blend-mode-property-parsing.js
|
| +++ b/LayoutTests/css3/compositing/script-tests/blend-mode-property-parsing.js
|
| @@ -11,9 +11,9 @@ function jsWrapperClass(node)
|
| function shouldBeType(expression, className, prototypeName, constructorName)
|
| {
|
| if (!prototypeName)
|
| - prototypeName = className + "Prototype";
|
| + prototypeName = "Object";
|
| if (!constructorName)
|
| - constructorName = className + "Constructor";
|
| + constructorName = "Function";
|
| shouldBe("jsWrapperClass(" + expression + ")", "'" + className + "'");
|
| shouldBe("jsWrapperClass(" + expression + ".__proto__)", "'" + prototypeName + "'");
|
| shouldBe("jsWrapperClass(" + expression + ".constructor)", "'" + constructorName + "'");
|
|
|