| Index: third_party/WebKit/Source/core/html/parser/HTMLParserThreadTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/parser/HTMLParserThreadTest.cpp b/third_party/WebKit/Source/core/html/parser/HTMLParserThreadTest.cpp
|
| deleted file mode 100644
|
| index bf551ee0cb03cac7c911da680b920a68607b50c4..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/Source/core/html/parser/HTMLParserThreadTest.cpp
|
| +++ /dev/null
|
| @@ -1,34 +0,0 @@
|
| -// 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.
|
| -
|
| -#include "core/html/parser/HTMLParserThread.h"
|
| -
|
| -#include "platform/RuntimeEnabledFeatures.h"
|
| -#include "testing/gtest/include/gtest/gtest.h"
|
| -
|
| -namespace blink {
|
| -
|
| -TEST(HTMLParserThreadTest, Init) {
|
| - // The harness has not initialized the parser thread, due to
|
| - // RuntimeEnabledFeatures gating.
|
| - ASSERT_FALSE(HTMLParserThread::shared());
|
| - HTMLParserThread::init();
|
| - ASSERT_TRUE(HTMLParserThread::shared());
|
| - HTMLParserThread::shutdown();
|
| -}
|
| -
|
| -TEST(HTMLParserThreadTest, ShutdownStartup) {
|
| - // The harness has not initialized the parser thread, due to
|
| - // RuntimeEnabledFeatures gating.
|
| - ASSERT_FALSE(HTMLParserThread::shared());
|
| - HTMLParserThread::init();
|
| - ASSERT_TRUE(HTMLParserThread::shared());
|
| -
|
| - HTMLParserThread::shutdown();
|
| - ASSERT_FALSE(HTMLParserThread::shared());
|
| - HTMLParserThread::init();
|
| - ASSERT_TRUE(HTMLParserThread::shared());
|
| -}
|
| -
|
| -} // namespace blink
|
|
|