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

Unified Diff: chrome/test/data/perf/rendering/throughput/compositing_huge_div/index.html

Issue 124393006: Remove throughput_tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove change to window_snapshot.h Created 6 years, 11 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: chrome/test/data/perf/rendering/throughput/compositing_huge_div/index.html
diff --git a/chrome/test/data/perf/rendering/throughput/compositing_huge_div/index.html b/chrome/test/data/perf/rendering/throughput/compositing_huge_div/index.html
deleted file mode 100644
index 8251f261c8d7e163d2cde305bfc7a49dd6bd7d59..0000000000000000000000000000000000000000
--- a/chrome/test/data/perf/rendering/throughput/compositing_huge_div/index.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<html>
-<head>
-<title>Compositing - Huge &lt;div&gt;</title>
-</head>
-<body>
-<div id="big" style="-webkit-transform: translateZ(0);">
- <div style="left: 0px; top: 0px; width: 100px; height: 100px; position: absolute; background-color: green;"></div>
- <div style="left: 3000000px; top: 1000000px; width: 100px; height: 100px; position: absolute; background-color: red;" id="bottomRight"></div>
-</div>
-<script>
-window.onload = init;
-
-var raf;
-
-function init() {
- raf = window.requestAnimationFrame ||
- window.webkitRequestAnimationFrame ||
- window.mozRequestAnimationFrame ||
- window.oRequestAnimationFrame ||
- window.msRequestAnimationFrame;
- tick();
-};
-
-function tick() {
- update();
- raf(tick);
-};
-var bottomRight = document.getElementById('bottomRight');
-var x = 3000000;
-var y = 1000000;
-
-function rand255() {
- return Math.floor(Math.random() * 256);
-}
-
-function update() {
- y += 1000000;
- bottomRight.style.left = x + 'px';
- bottomRight.style.top = y + 'px';
- bottomRight.style.backgroundColor = "rgb(" + rand255() + ", " + rand255() + ", " + rand255() + ")";
- scrollTo(x, y);
-};
-
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698