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

Unified Diff: tools/perf/page_sets/jitter_test_cases/child_jitter_with_parent.html

Issue 2873453005: Remove jitter page set (Closed)
Patch Set: Created 3 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: tools/perf/page_sets/jitter_test_cases/child_jitter_with_parent.html
diff --git a/tools/perf/page_sets/jitter_test_cases/child_jitter_with_parent.html b/tools/perf/page_sets/jitter_test_cases/child_jitter_with_parent.html
deleted file mode 100644
index b2409f77f6381b23feeb6b2facc45e0177184bef..0000000000000000000000000000000000000000
--- a/tools/perf/page_sets/jitter_test_cases/child_jitter_with_parent.html
+++ /dev/null
@@ -1,57 +0,0 @@
-<!DOCTYPE html>
-<!-- saved from url=(0048)http://fiddle.jshell.net/bt8dhkrn/10/show/light/ -->
-<!-- here we have two divs that jitter together -->
-
-<style>
- #jitter-parent {
- width: 100px;
- height: 100px;
- background: papayawhip;
- border: 1px solid black;
- will-change: transform;
- }
-
- #jitter-child {
- width: 50px;
- height: 50px;
- background: green;
- border: 1px solid black;
- will-change: transform;
- }
-
- #scrolled {
- width: 100px;
- height: 100px;
- background: red;
- border: 1px solid black;
- will-change: transform;
- }
-
- body {
- height: 2500px;
- }
-</style>
-
-<script>
-window.onload=function(){
-tick = function(timestamp) {
- document.getElementById("jitter-parent").style.transform = "translate(0px, " + document.body.scrollTop + "px)";
- window.requestAnimationFrame(tick);
-}
-window.requestAnimationFrame(tick);
-
-jank = function(timestamp) {
- for (var i = 0; i < 10; ++i) {
- Date.now();
- }
- window.setTimeout(jank, 50);
-}
-window.setTimeout(jank, 50);
-}
-</script>
-
-<div id="jitter-parent" style="transform: translate(0px, 0px);">
- <div id="jitter-child"></div>
-</div>
-<div id="scrolled"></div>
-</html>
« no previous file with comments | « tools/perf/page_sets/jitter_test_cases/big_layer_jitter.html ('k') | tools/perf/page_sets/jitter_test_cases/fixed.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698