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

Side by Side Diff: Source/core/dom/MarkerPseudoElement.h

Issue 778003003: List marker pseudo elements. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef MarkerPseudoElement_h
6 #define MarkerPseudoElement_h
7
8 #include "core/dom/PseudoElement.h"
9
10 namespace blink {
11
12 class LayoutBlockFlow;
13 class LayoutListMarker;
14
15 class MarkerPseudoElement final : public PseudoElement {
16 WTF_MAKE_NONCOPYABLE(MarkerPseudoElement);
17 public:
18 static PassRefPtrWillBeRawPtr<MarkerPseudoElement> create(Element* parent)
19 {
20 return adoptRefWillBeNoop(new MarkerPseudoElement(parent));
21 }
22
23 virtual ~MarkerPseudoElement();
24
25 void attach(const AttachContext& = AttachContext()) override;
26
27 LayoutObject* createLayoutObject(const ComputedStyle&) override;
28
29 // FIXME: Make these private and file static when old code is removed.
30 static LayoutObject* parentOfFirstLineBox(LayoutBlockFlow* curr, const Layou tObject* marker);
31 static LayoutObject* firstNonMarkerChild(LayoutObject* parent);
32
33 static PassRefPtr<ComputedStyle> styleForListMarkerLayoutObject(LayoutObject &, const ComputedStyle*);
34
35 void attachListMarkerLayoutObject();
esprehn 2015/04/22 07:45:45 attachListMarker(), no need for LayoutObject in th
dsinclair 2015/04/22 20:00:38 Done.
36
37 private:
38 explicit MarkerPseudoElement(Element*);
39
40 PassRefPtr<ComputedStyle> customStyleForLayoutObject();
41
42 void didRecalcStyle(StyleRecalcChange) override;
43 };
44
45 DEFINE_ELEMENT_TYPE_CASTS(MarkerPseudoElement, isMarkerPseudoElement());
46
47 } // namespace blink
48
49 #endif // MarkerPseudoElement_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698