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

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

Issue 2296873002: Add more idle after loading stories. (Closed)
Patch Set: Rebase. Created 4 years, 4 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/idle_after_loading_stories_002.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/idle_after_loading_stories.py
diff --git a/tools/perf/page_sets/idle_after_loading_stories.py b/tools/perf/page_sets/idle_after_loading_stories.py
index f4b1b89ff26e6521a73330a9dbdaadea581cc90a..a1f416db1a529a2f85260a7167e0ae927b4b22ee 100644
--- a/tools/perf/page_sets/idle_after_loading_stories.py
+++ b/tools/perf/page_sets/idle_after_loading_stories.py
@@ -4,6 +4,55 @@
from telemetry.page import page as page_module
from telemetry import story
+# Chrome has high idle CPU usage on these sites, even after they have quiesced.
+SITES = [
+ # https://bugs.chromium.org/p/chromium/issues/detail?id=638365
+ 'http://www.labradortraininghq.com/labrador-training/how-to-crate-train'
+ '-a-puppy/#How_Long_DoesIt_Take_To_Crate_Train_A_Puppy',
+
+ # https://bugs.chromium.org/p/chromium/issues/detail?id=505990
+ 'http://abcnews.go.com/',
+
+ # https://bugs.chromium.org/p/chromium/issues/detail?id=505601
+ 'http://www.slideshare.net/patrickmeenan',
+
+ # https://bugs.chromium.org/p/chromium/issues/detail?id=505577
+ 'http://tumblr.all-that-is-interesting.com/',
+
+ # https://bugs.chromium.org/p/chromium/issues/detail?id=505553
+ 'https://instagram.com/cnn/',
+
+ # https://bugs.chromium.org/p/chromium/issues/detail?id=505544
+ 'http://www.sina.com.cn',
+
+ # https://bugs.chromium.org/p/chromium/issues/detail?id=505056
+ 'http://bbc.com/news/uk/',
+
+ # https://bugs.chromium.org/p/chromium/issues/detail?id=505054
+ 'http://www.uol.com.br',
+
+ # https://bugs.chromium.org/p/chromium/issues/detail?id=505052
+ 'http://www.indiatimes.com',
+
+ # https://bugs.chromium.org/p/chromium/issues/detail?id=505044
+ 'http://www.w3schools.com/html/default.asp',
+
+ # https://bugs.chromium.org/p/chromium/issues/detail?id=505002
+ 'http://www.microsoft.com',
+
+ # https://bugs.chromium.org/p/chromium/issues/detail?id=489936
+ 'http://capitalone.com',
+
+ # https://bugs.chromium.org/p/chromium/issues/detail?id=481225
+ 'https://twitter.com/katyperry',
+
+ # https://bugs.chromium.org/p/chromium/issues/detail?id=476158
+ 'http://bgr.com',
+
+ # https://bugs.chromium.org/p/chromium/issues/detail?id=425474
+ 'http://www.androidpolice.com/2014/10/20/animation-bonanza-android'
+ '-5-0-lollipop-in-gifs/',
+]
# TODO(rnephew): Move to seperate file and merge with mac_gpu_sites BasePage.
class _BasePage(page_module.Page):
@@ -26,9 +75,5 @@ class IdleAfterLoadingStories(story.StorySet):
# Chrome has high idle CPU usage on this site, even after its quiesced.
# https://crbug.com/638365.
- urls = [
- 'http://www.labradortraininghq.com/labrador-training/how-to-crate-train'
- '-a-puppy/#How_Long_DoesIt_Take_To_Crate_Train_A_Puppy'
- ]
- for url in urls:
+ for url in SITES:
self.AddStory(_BasePage(self, url, wait_in_seconds))
« no previous file with comments | « tools/perf/page_sets/data/idle_after_loading_stories_002.wpr.sha1 ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698