summaryrefslogtreecommitdiffstats
path: root/content/browser/fileapi/blob_layout_browsertest.cc
blob: 05478b40dedc7c527d62a4ce5911f3a518863d7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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.

#include "content/test/layout_browsertest.h"

namespace content {

class BlobLayoutTest : public InProcessBrowserLayoutTest {
 public:
  BlobLayoutTest() :
      InProcessBrowserLayoutTest(
          FilePath(),
          FilePath(FILE_PATH_LITERAL("fast/files")).NormalizePathSeparators()) {
  }
};

IN_PROC_BROWSER_TEST_F(BlobLayoutTest, SliceTests) {
  RunLayoutTest("blob-slice-test.html");
}

}  // namespace content