summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/layout/ng/ng_outline_utils.cc
blob: 805794074b607ba6689c566deaa5572abefbdf83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/layout/ng/ng_outline_utils.h"

#include "third_party/blink/renderer/core/layout/layout_inline.h"
#include "third_party/blink/renderer/core/layout/ng/inline/ng_inline_cursor.h"
#include "third_party/blink/renderer/core/layout/ng/ng_physical_box_fragment.h"
#include "third_party/blink/renderer/core/style/computed_style.h"

namespace blink {

bool NGOutlineUtils::HasPaintedOutline(const ComputedStyle& style,
                                       const Node* node) {
  if (!style.HasOutline() || style.Visibility() != EVisibility::kVisible)
    return false;
  if (style.OutlineStyleIsAuto() &&
      !LayoutTheme::GetTheme().ShouldDrawDefaultFocusRing(node, style))
    return false;
  return true;
}

bool NGOutlineUtils::ShouldPaintOutline(
    const NGPhysicalBoxFragment& physical_fragment) {
  if (!physical_fragment.IsInlineBox())
    return true;
  const LayoutObject* layout_object = physical_fragment.GetLayoutObject();
  DCHECK(layout_object);
  DCHECK(layout_object->IsLayoutInline());

  // A |LayoutInline| can be split across multiple objects. The first fragment
  // produced should paint the outline for *all* fragments.
  if (layout_object->IsElementContinuation()) {
    // If the |LayoutInline|'s continuation-root generated a fragment, we
    // shouldn't paint the outline.
    DCHECK(layout_object->ContinuationRoot());
    NGInlineCursor cursor;
    cursor.MoveTo(*layout_object->ContinuationRoot());
    if (cursor)
      return false;
  }

  // The first fragment paints all outlines. Check if this is the first fragment
  // for the |layout_object|.
  NGInlineCursor cursor;
  cursor.MoveTo(*layout_object);
  DCHECK(cursor);
  return cursor.Current().BoxFragment() == &physical_fragment;
}

}  // namespace blink