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

Unified Diff: third_party/WebKit/Source/core/dom/Document.cpp

Issue 1709963002: [css-align] New CSS Value 'normal' for Self Alignment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/dom/Document.cpp
diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
index 8fef529d996e416d456b2efc891fcbca9a0a3156..7dbd363b650daaa0ed5c4106b8d4ef432afa2975 100644
--- a/third_party/WebKit/Source/core/dom/Document.cpp
+++ b/third_party/WebKit/Source/core/dom/Document.cpp
@@ -5648,6 +5648,11 @@ Document& Document::ensureTemplateDocument()
return *m_templateDocument.get();
}
+const ComputedStyle* Document::virtualEnsureComputedStyle(PseudoId pseudoElementSpecifier)
+{
+ return m_layoutView ? m_layoutView->style() : nullptr;
+}
+
void Document::didAssociateFormControl(Element* element)
{
if (!frame() || !frame()->page())

Powered by Google App Engine
This is Rietveld 408576698