Commit 6ede15e1 authored by Amy Qiu's avatar Amy Qiu Committed by Commit Bot

Refresh simple mobile sites recordings

Update recordings for pages in simple_mobile_sites for rendering.mobile.
Change the flickr url to an album to bypass the initial login screen
(doesn't allow scrolling).

Bug: 852530
Change-Id: I2bd71f512492cb306c47fea0f9bd857fae953338
Reviewed-on: https://chromium-review.googlesource.com/1146499Reviewed-by: default avatarNed Nguyen <nednguyen@google.com>
Commit-Queue: Amy Qiu <amyqiu@google.com>
Cr-Commit-Position: refs/heads/master@{#577398}
parent b0290b07
...@@ -927,18 +927,30 @@ ...@@ -927,18 +927,30 @@
"microsoft_performance": { "microsoft_performance": {
"DEFAULT": "tough_animation_cases_000.wprgo" "DEFAULT": "tough_animation_cases_000.wprgo"
}, },
"nytimes_scroll": { "ebay_scroll": {
"DEFAULT": "simple_mobile_sites_002.wprgo" "DEFAULT": "simple_mobile_sites_002.wprgo"
}, },
"ebay_scroll": { "ebay_scroll_2018": {
"DEFAULT": "simple_mobile_sites_003.wprgo"
},
"flickr_scroll": {
"DEFAULT": "simple_mobile_sites_002.wprgo" "DEFAULT": "simple_mobile_sites_002.wprgo"
}, },
"flickr_scroll_2018": {
"DEFAULT": "simple_mobile_sites_003.wprgo"
},
"nyc_gov_scroll": { "nyc_gov_scroll": {
"DEFAULT": "simple_mobile_sites_002.wprgo" "DEFAULT": "simple_mobile_sites_002.wprgo"
}, },
"flickr_scroll": { "nyc_gov_scroll_2018": {
"DEFAULT": "simple_mobile_sites_003.wprgo"
},
"nytimes_scroll": {
"DEFAULT": "simple_mobile_sites_002.wprgo" "DEFAULT": "simple_mobile_sites_002.wprgo"
}, },
"nytimes_scroll_2018": {
"DEFAULT": "simple_mobile_sites_003.wprgo"
},
"aquarium_20k": { "aquarium_20k": {
"DEFAULT": "tough_webgl_cases_006.wprgo" "DEFAULT": "tough_webgl_cases_006.wprgo"
}, },
......
065b9689c56910180fe8518346451562b8fc6dda
\ No newline at end of file
...@@ -41,16 +41,40 @@ class SimpleEbayPage(SimplePage): ...@@ -41,16 +41,40 @@ class SimpleEbayPage(SimplePage):
URL = 'http://www.ebay.co.uk/' URL = 'http://www.ebay.co.uk/'
class SimpleEbay2018Page(SimplePage):
BASE_NAME = 'ebay_scroll'
YEAR = '2018'
URL = 'http://www.ebay.co.uk/'
class SimpleFlickrPage(SimplePage): class SimpleFlickrPage(SimplePage):
BASE_NAME = 'flickr_scroll' BASE_NAME = 'flickr_scroll'
URL = 'https://www.flickr.com/' URL = 'https://www.flickr.com/'
class SimpleFlickr2018Page(SimplePage):
BASE_NAME = 'flickr_scroll'
YEAR = '2018'
URL = 'https://www.flickr.com/photos/flickr/albums/72157639858715274'
class SimpleNYCGovPage(SimplePage): class SimpleNYCGovPage(SimplePage):
BASE_NAME = 'nyc_gov_scroll' BASE_NAME = 'nyc_gov_scroll'
URL = 'http://www.nyc.gov' URL = 'http://www.nyc.gov'
class SimpleNYCGov2018Page(SimplePage):
BASE_NAME = 'nyc_gov_scroll'
YEAR = '2018'
URL = 'http://www.nyc.gov'
class SimpleNYTimesPage(SimplePage): class SimpleNYTimesPage(SimplePage):
BASE_NAME = 'nytimes_scroll' BASE_NAME = 'nytimes_scroll'
URL = 'http://m.nytimes.com/' URL = 'http://m.nytimes.com/'
class SimpleNYTimes2018Page(SimplePage):
BASE_NAME = 'nytimes_scroll'
YEAR = '2018'
URL = 'http://m.nytimes.com/'
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment