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

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, 7 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
« no previous file with comments | « Source/core/dom/LayoutTreeBuilder.cpp ('k') | Source/core/dom/MarkerPseudoElement.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 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(LayoutObject* curr, const LayoutOb ject* marker);
31 static LayoutObject* firstNonMarkerChild(LayoutObject* parent);
32
33 static PassRefPtr<ComputedStyle> styleForListMarker(LayoutObject&, const Com putedStyle*);
34
35 void attachListMarker();
36
37 private:
38 explicit MarkerPseudoElement(Element*);
39
40 void didRecalcStyle(StyleRecalcChange) override;
41 };
42
43 DEFINE_ELEMENT_TYPE_CASTS(MarkerPseudoElement, isMarkerPseudoElement());
44
45 } // namespace blink
46
47 #endif // MarkerPseudoElement_h
OLDNEW
« no previous file with comments | « Source/core/dom/LayoutTreeBuilder.cpp ('k') | Source/core/dom/MarkerPseudoElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698