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

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

Issue 2733593002: Text control elements should contain all (shadow DOM) children. (Closed)
Patch Set: Improve documentation. Created 3 years, 9 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/layout/LayoutGeometryMap.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutGeometryMap.cpp b/third_party/WebKit/Source/core/layout/LayoutGeometryMap.cpp
index 9c55011fd10d037355ccbe7e0b74509159f730f1..be273119ee35792a0d46aa230e4a56b6ae6e2cb3 100644
--- a/third_party/WebKit/Source/core/layout/LayoutGeometryMap.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutGeometryMap.cpp
@@ -196,10 +196,11 @@ static bool canMapBetweenLayoutObjects(const LayoutObject& layoutObject,
current = current->parent()) {
const ComputedStyle& style = current->styleRef();
if (style.position() == EPosition::kFixed ||
- style.isFlippedBlocksWritingMode())
+ style.isFlippedBlocksWritingMode() ||
+ style.hasTransformRelatedProperty())
return false;
- if (current->style()->canContainFixedPositionObjects() ||
+ if (current->canContainFixedPositionObjects() ||
current->isLayoutFlowThread() || current->isSVGRoot())
return false;

Powered by Google App Engine
This is Rietveld 408576698