webgl_conformance_expectations.py revision d3868032626d59662ff73b372b5d584c1d144c53
1# Copyright (c) 2013 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5from telemetry.page import test_expectations
6
7# Valid expectation conditions are:
8# win xp vista win7
9# mac leopard snowleopard lion mountainlion
10# linux chromeos
11# nvidia amd intel
12
13class WebGLConformanceExpectations(test_expectations.TestExpectations):
14  def SetExpectations(self):
15    # Sample Usage:
16    # self.Fail("gl-enable-vertex-attrib.html", ["mac", "win"], bug=1234)
17    pass
18