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

Unified Diff: third_party/WebKit/LayoutTests/virtual/threaded/animations/composited-animation-independent-transform-cancel.html

Issue 2724083002: [SPv2] Decomposite otherwise-compositable animations that paint nothing. (Closed)
Patch Set: Update expectations. Created 3 years, 8 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: third_party/WebKit/LayoutTests/virtual/threaded/animations/composited-animation-independent-transform-cancel.html
diff --git a/third_party/WebKit/LayoutTests/virtual/threaded/animations/composited-animation-independent-transform-cancel.html b/third_party/WebKit/LayoutTests/virtual/threaded/animations/composited-animation-independent-transform-cancel.html
index 35e8172bab738c8aa2903ca2d095dd9c4958875e..81e30830099036501a317e20bcb25b0d825bb9cb 100644
--- a/third_party/WebKit/LayoutTests/virtual/threaded/animations/composited-animation-independent-transform-cancel.html
+++ b/third_party/WebKit/LayoutTests/virtual/threaded/animations/composited-animation-independent-transform-cancel.html
@@ -17,6 +17,9 @@ var keyframeValueMap = {
cancelProperty is animated on the element */
function assertAnimationComposited(compositableProperty, cancelProperty, isStillComposited) {
var element = document.createElement('div');
+ // The element must have some painted content in order to be
+ // composited when animated in SPv2.
+ element.innerText = 'x';
document.getElementById('parent').appendChild(element);
var keyframe = {};

Powered by Google App Engine
This is Rietveld 408576698