OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 from telemetry.page import page as page_module | 5 from telemetry.page import page as page_module |
6 from telemetry import story | 6 from telemetry import story |
7 | 7 |
8 from page_sets import webgl_supported_shared_state | 8 from page_sets import webgl_supported_shared_state |
9 | 9 |
10 | 10 |
(...skipping 30 matching lines...) Expand all Loading... |
41 """ | 41 """ |
42 Description: Self-driven WebGL animation examples | 42 Description: Self-driven WebGL animation examples |
43 """ | 43 """ |
44 | 44 |
45 def __init__(self): | 45 def __init__(self): |
46 super(ToughWebglCasesPageSet, self).__init__( | 46 super(ToughWebglCasesPageSet, self).__init__( |
47 archive_data_file='data/tough_webgl_cases.json', | 47 archive_data_file='data/tough_webgl_cases.json', |
48 cloud_storage_bucket=story.PUBLIC_BUCKET) | 48 cloud_storage_bucket=story.PUBLIC_BUCKET) |
49 | 49 |
50 urls_list = [ | 50 urls_list = [ |
51 # pylint: disable=C0301 | 51 # pylint: disable=line-too-long |
52 'http://www.khronos.org/registry/webgl/sdk/demos/google/nvidia-vertex-buff
er-object/index.html', | 52 'http://www.khronos.org/registry/webgl/sdk/demos/google/nvidia-vertex-buff
er-object/index.html', |
53 # pylint: disable=C0301 | 53 # pylint: disable=line-too-long |
54 'http://www.khronos.org/registry/webgl/sdk/demos/google/san-angeles/index.
html', | 54 'http://www.khronos.org/registry/webgl/sdk/demos/google/san-angeles/index.
html', |
55 # pylint: disable=C0301 | 55 # pylint: disable=line-too-long |
56 'http://www.khronos.org/registry/webgl/sdk/demos/google/particles/index.ht
ml', | 56 'http://www.khronos.org/registry/webgl/sdk/demos/google/particles/index.ht
ml', |
57 'http://www.khronos.org/registry/webgl/sdk/demos/webkit/Earth.html', | 57 'http://www.khronos.org/registry/webgl/sdk/demos/webkit/Earth.html', |
58 # pylint: disable=C0301 | 58 # pylint: disable=line-too-long |
59 'http://www.khronos.org/registry/webgl/sdk/demos/webkit/ManyPlanetsDeep.ht
ml', | 59 'http://www.khronos.org/registry/webgl/sdk/demos/webkit/ManyPlanetsDeep.ht
ml', |
60 'http://webglsamples.googlecode.com/hg/aquarium/aquarium.html', | 60 'http://webglsamples.googlecode.com/hg/aquarium/aquarium.html', |
61 'http://webglsamples.googlecode.com/hg/blob/blob.html', | 61 'http://webglsamples.googlecode.com/hg/blob/blob.html', |
62 # pylint: disable=C0301 | 62 # pylint: disable=line-too-long |
63 'http://webglsamples.googlecode.com/hg/dynamic-cubemap/dynamic-cubemap.htm
l' | 63 'http://webglsamples.googlecode.com/hg/dynamic-cubemap/dynamic-cubemap.htm
l' |
64 ] | 64 ] |
65 for url in urls_list: | 65 for url in urls_list: |
66 self.AddStory(ToughWebglCasesPage(url, self)) | 66 self.AddStory(ToughWebglCasesPage(url, self)) |
OLD | NEW |