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

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

Issue 1176093003: Remove blink_perf.animation page set (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
Index: PerformanceTests/Animation/mix-blend-mode-animation-screen.html
diff --git a/PerformanceTests/Animation/mix-blend-mode-animation-screen.html b/PerformanceTests/Animation/mix-blend-mode-animation-screen.html
deleted file mode 100644
index 028c0cb2fe57191728f1adf880bd5532924bdfc2..0000000000000000000000000000000000000000
--- a/PerformanceTests/Animation/mix-blend-mode-animation-screen.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: screen;
- 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: screen.",
- done: onCompletedRun,
- unit: 'fps'
- });
- startTrackingFrameRate();
- }
-
- function onCompletedRun() {
- stopTrackingFrameRate();
- }
- </script>
-</head>
-<body>
- <pre id="log"></pre>
- <div id="backdrop"></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698