Index: Source/core/dom/StyleChangeReason.cpp |
diff --git a/Source/core/dom/StyleChangeReason.cpp b/Source/core/dom/StyleChangeReason.cpp |
index c73f422acdffd34bd703a239c07df414efd69e2b..e3a12e6ad8b335b24368f62624c9df2dfe9081a9 100644 |
--- a/Source/core/dom/StyleChangeReason.cpp |
+++ b/Source/core/dom/StyleChangeReason.cpp |
@@ -50,6 +50,7 @@ DEFINE_GLOBAL(AtomicString, Active) |
DEFINE_GLOBAL(AtomicString, Disabled) |
DEFINE_GLOBAL(AtomicString, Focus) |
DEFINE_GLOBAL(AtomicString, Hover) |
+DEFINE_GLOBAL(AtomicString, Past) |
DEFINE_GLOBAL(AtomicString, Unresolved) |
void init() |
@@ -60,6 +61,7 @@ void init() |
new (NotNull, (void*)&Disabled) AtomicString(":disabled", AtomicString::ConstructFromLiteral); |
new (NotNull, (void*)&Focus) AtomicString(":focus", AtomicString::ConstructFromLiteral); |
new (NotNull, (void*)&Hover) AtomicString(":hover", AtomicString::ConstructFromLiteral); |
+ new (NotNull, (void*)&Past) AtomicString(":past", AtomicString::ConstructFromLiteral); |
new (NotNull, (void*)&Unresolved) AtomicString(":unresolved", AtomicString::ConstructFromLiteral); |
} |