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

Unified Diff: Source/core/html/parser/HTMLEntityParserTest.cpp

Issue 1311043004: Revert of SegmentedString::push() should always push a char in front (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/parser/HTMLEntityParser.cpp ('k') | Source/platform/text/SegmentedString.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/parser/HTMLEntityParserTest.cpp
diff --git a/Source/core/html/parser/HTMLEntityParserTest.cpp b/Source/core/html/parser/HTMLEntityParserTest.cpp
deleted file mode 100644
index be460d97af72c851561e9cf50b447659489f40bf..0000000000000000000000000000000000000000
--- a/Source/core/html/parser/HTMLEntityParserTest.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright 2015 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 "config.h"
-#include "core/html/parser/HTMLEntityParser.h"
-
-#include <gtest/gtest.h>
-
-namespace blink {
-
-TEST(HTMLEntityParserTest, ConsumeHTMLEntityIncomplete)
-{
- String original("am"); // Incomplete by purpose.
- SegmentedString src(original);
-
- DecodedHTMLEntity entity;
- bool notEnoughCharacters;
- bool success = consumeHTMLEntity(src, entity, notEnoughCharacters);
- EXPECT_TRUE(notEnoughCharacters);
- EXPECT_FALSE(success);
-
- // consumeHTMLEntity should recover the original SegmentedString state if failed.
- EXPECT_STREQ(original.ascii().data(), src.toString().ascii().data());
-}
-
-} // namespace blink
« no previous file with comments | « Source/core/html/parser/HTMLEntityParser.cpp ('k') | Source/platform/text/SegmentedString.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698