1# Copyright (c) 2013 The Chromium OS 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 5AUTHOR = "dunno@chromium.org" 6NAME = "video_YouTubePage.seeking" 7PURPOSE = "Verify that YouTube page HTML5 video seek works" 8CRITERIA = """ 9This test will fail if YouTube page HTML5 video fails to seek. 10""" 11TIME = "SHORT" 12TEST_CATEGORY = "General" 13TEST_CLASS = "video" 14TEST_TYPE = "client" 15BUG_TEMPLATE = { 16 'labels': ['VideoTestFailure', 'OS-Chrome'], 17} 18 19DOC = """ 20This test verifies YouTube video can seek. 21""" 22 23_TEST_NAME = 'seeking' 24_TEST_PAGE = 'https://youtube.com/watch?v=zuzaxlddWbk&html5=1' 25job.run_test('video_YouTubePage', subtest_name=_TEST_NAME, 26 test_page=_TEST_PAGE, 27 subdir_tag=_TEST_NAME) 28