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

Unified Diff: tools/perf/page_sets/key_silk_cases.py

Issue 604003002: Add text size animation to silk page set (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | « tools/perf/page_sets/data/key_silk_cases_018.wpr.sha1 ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/key_silk_cases.py
diff --git a/tools/perf/page_sets/key_silk_cases.py b/tools/perf/page_sets/key_silk_cases.py
index ca5a817e2a728635e41f41e11ebdae4152e0f221..badfd4fc91c133f4faa957a2bf463ce8c67a175a 100644
--- a/tools/perf/page_sets/key_silk_cases.py
+++ b/tools/perf/page_sets/key_silk_cases.py
@@ -633,6 +633,21 @@ class UpdateHistoryState(KeySilkCasesPage):
interaction.End()
+class TextSizeAnimation(KeySilkCasesPage):
+
+ """ Why: Scale animation with text. """
+
+ def __init__(self, page_set):
+ super(TextSizeAnimation, self).__init__(
+ url='http://jsbin.com/gikex/2/quiet',
+ page_set=page_set)
+
+ self.gpu_raster = True
+
+ def RunSmoothness(self, action_runner):
+ action_runner.Wait(4)
+
+
class KeySilkCasesPageSet(page_set_module.PageSet):
""" Pages hand-picked for project Silk. """
@@ -674,3 +689,4 @@ class KeySilkCasesPageSet(page_set_module.PageSet):
self.AddPage(Page26(self))
self.AddPage(SVGIconRaster(self))
self.AddPage(UpdateHistoryState(self))
+ self.AddPage(TextSizeAnimation(self))
« no previous file with comments | « tools/perf/page_sets/data/key_silk_cases_018.wpr.sha1 ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698