aboutsummaryrefslogtreecommitdiff
path: root/catapult/telemetry/telemetry/internal/testing/pages/external_page.py
blob: c0a1cf35e11929eea32592553bc1b6c8a71c1312 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python
# Copyright 2014 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.page import Page


class ExternalPage(Page):
  def __init__(self, ps):
    super(ExternalPage, self).__init__('file://foo.html', page_set=ps)