Chromium Code Reviews

Unified Diff: third_party/WebKit/Source/core/layout/LayoutVTTCue.cpp

Issue 2458823002: Don't establish LayoutState for LayoutTableRow objects. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: third_party/WebKit/Source/core/layout/LayoutVTTCue.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutVTTCue.cpp b/third_party/WebKit/Source/core/layout/LayoutVTTCue.cpp
index d7de39ea4114cf5d0371cb0209338bbed3e95fa1..891c8ffaec02da61ba843f9ae80a0a0492fc4731 100644
--- a/third_party/WebKit/Source/core/layout/LayoutVTTCue.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutVTTCue.cpp
@@ -355,7 +355,7 @@ void LayoutVTTCue::layout() {
DCHECK(firstChild());
- LayoutState state(*this, locationOffset());
+ LayoutState state(*this);
// http://dev.w3.org/html5/webvtt/#dfn-apply-webvtt-cue-settings - step 13.
if (!std::isnan(m_snapToLinesPosition))

Powered by Google App Engine