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

Unified Diff: third_party/WebKit/Source/core/events/EventPathTest.cpp

Issue 2002063003: Change "bool createdByParser" of createElement() to enum (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cestate
Patch Set: Add ImportNode Created 4 years, 7 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
Index: third_party/WebKit/Source/core/events/EventPathTest.cpp
diff --git a/third_party/WebKit/Source/core/events/EventPathTest.cpp b/third_party/WebKit/Source/core/events/EventPathTest.cpp
index 40ef50043f0ec2e5ebc0fef8b8e3e731206ba67c..4351aabc62cefba30bc4d7e10bb5e9abfbd083cd 100644
--- a/third_party/WebKit/Source/core/events/EventPathTest.cpp
+++ b/third_party/WebKit/Source/core/events/EventPathTest.cpp
@@ -30,7 +30,7 @@ void EventPathTest::SetUp()
TEST_F(EventPathTest, ShouldBeEmptyForPseudoElementWithoutParentElement)
{
- Element* div = document().createElement(HTMLNames::divTag, false);
+ Element* div = document().createElement(HTMLNames::divTag, CreatedByCreateElement);
PseudoElement* pseudo = PseudoElement::create(div, PseudoIdFirstLetter);
pseudo->dispose();
EventPath eventPath(*pseudo);

Powered by Google App Engine
This is Rietveld 408576698