Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(277)

Side by Side Diff: Source/core/html/parser/HTMLParserThreadTest.cpp

Issue 100563004: Redirect HTML resource bytes directly to parser thread (Blink side CL) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@parserthread_decodermove
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 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
5 #include "config.h"
6 #include "core/html/parser/HTMLParserThread.h"
7
8 #include <gtest/gtest.h>
9
10 namespace {
11
12 using namespace WebCore;
13
14 TEST(HTMLParserThread, Init)
15 {
16 // The harness has already run init() for us, so tear down the parser first.
17 ASSERT_TRUE(HTMLParserThread::shared());
18 HTMLParserThread::shutdown();
19
20 // Make sure starting the parser thread brings it back to life.
21 ASSERT_FALSE(HTMLParserThread::shared());
22 HTMLParserThread::init();
23 ASSERT_TRUE(HTMLParserThread::shared());
24 }
25
26 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698