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

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

Issue 959063002: key_mobile_sites_smooth: Reload pages before scrolling for LinkedIn and Wowwiki (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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/key_mobile_sites_pages.py ('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_mobile_sites_smooth.py
diff --git a/tools/perf/page_sets/key_mobile_sites_smooth.py b/tools/perf/page_sets/key_mobile_sites_smooth.py
index 918e46ddcddf911e16e733b5e51637addf9aa090..7c09a0e30e3c2843edfbfe56c7b7fd0aa7579bfa 100644
--- a/tools/perf/page_sets/key_mobile_sites_smooth.py
+++ b/tools/perf/page_sets/key_mobile_sites_smooth.py
@@ -137,6 +137,12 @@ class KeyMobileSitesSmoothPageSet(page_set_module.PageSet):
self.AddUserStory(
_CreatePageClassWithSmoothInteractions(page_class)(self))
+ # Rerun the LinkedIn page to take the benefit of shader disk cache for
+ # gpu rasterization. Make sure the rerun is after the original page.
+ self.AddUserStory(
+ _CreatePageClassWithSmoothInteractions(
+ key_mobile_sites_pages.LinkedInPage)(self, name='LinkedIn - rerun'))
+
# Add pages with custom page interaction logic.
# Page behaves non-deterministically, replaced with test version for now.
@@ -253,8 +259,6 @@ class KeyMobileSitesSmoothPageSet(page_set_module.PageSet):
'http://www.sfgate.com/',
# Why: Non-latin character set
'http://worldjournal.com/',
- # Why: Mobile wiki
- 'http://www.wowwiki.com/World_of_Warcraft:_Mists_of_Pandaria',
# Why: #15 Alexa news
'http://online.wsj.com/home-page',
# Why: Image-heavy mobile site
@@ -270,3 +274,11 @@ class KeyMobileSitesSmoothPageSet(page_set_module.PageSet):
for url in urls_list:
self.AddUserStory(KeyMobileSitesSmoothPage(url, self))
+
+ # Why: Mobile wiki
+ wow_url = 'http://www.wowwiki.com/World_of_Warcraft:_Mists_of_Pandaria'
+ self.AddUserStory(KeyMobileSitesSmoothPage(url=wow_url, page_set=self))
+ # Rerun the wowwiki page to take the benefit of shader disk cache for
+ # gpu rasterization. Make sure the rerun is after the original page.
+ self.AddUserStory(KeyMobileSitesSmoothPage(
jdduke (slow) 2015/02/26 22:05:04 Are we guaranteed that the same page will run on t
Yufeng Shen (Slow to review) 2015/02/26 22:15:04 I think one benchmark always runs on the same devi
+ url=wow_url, page_set=self, name=wow_url + ' - rerun'))
« no previous file with comments | « tools/perf/page_sets/key_mobile_sites_pages.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698