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

Unified Diff: PerformanceTests/Animation/mix-blend-mode-animation-difference.html

Issue 1175453002: Finalize migration of blink_perf.animation to smoothness.tough_animation_cases (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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
« no previous file with comments | « no previous file | PerformanceTests/Animation/mix-blend-mode-animation-hue.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: PerformanceTests/Animation/mix-blend-mode-animation-difference.html
diff --git a/PerformanceTests/Animation/mix-blend-mode-animation-difference.html b/PerformanceTests/Animation/mix-blend-mode-animation-difference.html
deleted file mode 100644
index 7c6c22a0c1df198de543cd2a364fa7ef305df73b..0000000000000000000000000000000000000000
--- a/PerformanceTests/Animation/mix-blend-mode-animation-difference.html
+++ /dev/null
@@ -1,61 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <title>Benchmark - CSS Blending and CSS Animation</title>
- <style>
- #backdrop {
- float: left;
- width: 400px;
- height: 400px;
- isolation: isolate;
- background-image: linear-gradient(to bottom,
- rgba(255, 255, 0, 0.9),
- rgba(255, 0, 0, 0.9),
- rgba(0, 255, 0, 0.9),
- rgba(0, 0, 255, 0.9),
- rgba(0, 0, 0, 0.9));
- position: absolute;
- top: 50px;
- left: 100px;
- }
- #backdrop div {
- width: 5%;
- height: 5%;
- background-color: rgba(200, 100, 100, 0.7);
- float: left;
- will-change: transform;
- mix-blend-mode: difference;
- animation: rotate 3s infinite linear;
- }
- @keyframes rotate {
- to {transform: rotateZ(360deg);}
- }
- }
- </style>
- <script src="../resources/runner.js"></script>
- <script src="resources/framerate.js"></script>
- <script>
- window.onload = function () {
- var backdrop = document.getElementById("backdrop");
- for (var i = 0; i < 400; i++) {
- var div = document.createElement("div");
- backdrop.appendChild(div);
- }
- PerfTestRunner.prepareToMeasureValuesAsync({
- description: "Measure performance of CSS Animation on elements having mix-blend-mode: difference (a separable popular blend mode).",
- done: onCompletedRun,
- unit: 'fps'
- });
- startTrackingFrameRate();
- }
-
- function onCompletedRun() {
- stopTrackingFrameRate();
- }
- </script>
-</head>
-<body>
- <pre id="log"></pre>
- <div id="backdrop"></div>
-</body>
-</html>
« no previous file with comments | « no previous file | PerformanceTests/Animation/mix-blend-mode-animation-hue.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698