| Index: content/test/gpu/gpu_tests/pixel_test.py
|
| diff --git a/content/test/gpu/gpu_tests/pixel_test.py b/content/test/gpu/gpu_tests/pixel_test.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2998ed1fd35417e2bb75b3a32b21520ecf3a3d0b
|
| --- /dev/null
|
| +++ b/content/test/gpu/gpu_tests/pixel_test.py
|
| @@ -0,0 +1,16 @@
|
| +# Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +from telemetry.page import page_test
|
| +
|
| +class PixelTestFailure(Exception):
|
| + pass
|
| +
|
| +class PixelTest(page_test.PageTest):
|
| + def __init__(self):
|
| + super(PixelTest, self).__init__('ValidatePage')
|
| +
|
| + def ValidatePage(self, page, tab, results):
|
| + # TODO(bajones): Grab screenshot, compare to reference.
|
| + # page.reference_image
|
| + pass
|
|
|