Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(663)

Unified Diff: LayoutTests/css3/compositing/script-tests/blend-mode-property-parsing.js

Issue 15012010: Remove the CSS_COMPOSITING define, leaving the implementation under the runtime flag, since runtime… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: removed bogus test Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 + "'");

Powered by Google App Engine
This is Rietveld 408576698