| 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.story import story_set as story_set_module | 5 from telemetry.story import story_set as story_set_module |
| 6 | 6 |
| 7 import sys | 7 import sys |
| 8 | 8 |
| 9 from gpu_tests import gpu_test_base | 9 from gpu_tests import gpu_test_base |
| 10 | 10 |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 self.AddStory(PixelTestsPage( | 177 self.AddStory(PixelTestsPage( |
| 178 url='file://../../data/gpu/pixel_offscreenCanvas_webgl_commit_main.html', | 178 url='file://../../data/gpu/pixel_offscreenCanvas_webgl_commit_main.html', |
| 179 name=base_name + '.OffscreenCanvasWebGLGreenBox' + es3_suffix, | 179 name=base_name + '.OffscreenCanvasWebGLGreenBox' + es3_suffix, |
| 180 test_rect=[0, 0, 300, 300], | 180 test_rect=[0, 0, 300, 300], |
| 181 revision=1, | 181 revision=1, |
| 182 story_set=self, | 182 story_set=self, |
| 183 shared_page_state_class=EnableExperimentalCanvasFeaturesSharedPageState, | 183 shared_page_state_class=EnableExperimentalCanvasFeaturesSharedPageState, |
| 184 expectations=expectations)) | 184 expectations=expectations)) |
| 185 | 185 |
| 186 self.AddStory(PixelTestsPage( | 186 self.AddStory(PixelTestsPage( |
| 187 url='file://../../data/gpu/pixel_offscreenCanvas_webgl_commit_worker.html'
, | |
| 188 name=base_name + '.OffscreenCanvasWebGLRedBoxWorker' + es3_suffix, | |
| 189 test_rect=[0, 0, 300, 300], | |
| 190 revision=1, | |
| 191 story_set=self, | |
| 192 shared_page_state_class=EnableExperimentalCanvasFeaturesSharedPageState, | |
| 193 expectations=expectations)) | |
| 194 | |
| 195 self.AddStory(PixelTestsPage( | |
| 196 url='file://../../data/gpu/pixel_canvas2d.html', | 187 url='file://../../data/gpu/pixel_canvas2d.html', |
| 197 name=base_name + '.Canvas2DRedBox' + es3_suffix, | 188 name=base_name + '.Canvas2DRedBox' + es3_suffix, |
| 198 test_rect=[0, 0, 300, 300], | 189 test_rect=[0, 0, 300, 300], |
| 199 revision=7, | 190 revision=7, |
| 200 story_set=self, | 191 story_set=self, |
| 201 shared_page_state_class=shared_page_state_class, | 192 shared_page_state_class=shared_page_state_class, |
| 202 expectations=expectations)) | 193 expectations=expectations)) |
| 203 | 194 |
| 204 self.AddStory(PixelTestsPage( | 195 self.AddStory(PixelTestsPage( |
| 205 url='file://../../data/gpu/pixel_css3d.html', | 196 url='file://../../data/gpu/pixel_css3d.html', |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 story_set=self, | 264 story_set=self, |
| 274 shared_page_state_class=shared_page_state_class, | 265 shared_page_state_class=shared_page_state_class, |
| 275 expectations=expectations)) | 266 expectations=expectations)) |
| 276 | 267 |
| 277 @property | 268 @property |
| 278 def allow_mixed_story_states(self): | 269 def allow_mixed_story_states(self): |
| 279 # Return True here in order to be able to add the same tests with | 270 # Return True here in order to be able to add the same tests with |
| 280 # a different SharedPageState on Mac which tests them with the | 271 # a different SharedPageState on Mac which tests them with the |
| 281 # Core Profile rendering path. | 272 # Core Profile rendering path. |
| 282 return True | 273 return True |
| OLD | NEW |