| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Neither the name of Google Inc. nor the names of its | 10 * * Neither the name of Google Inc. nor the names of its |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #ifndef PseudoElement_h | 27 #ifndef PseudoElement_h |
| 28 #define PseudoElement_h | 28 #define PseudoElement_h |
| 29 | 29 |
| 30 #include "core/dom/Element.h" | 30 #include "core/dom/Element.h" |
| 31 #include "core/rendering/style/RenderStyle.h" | 31 #include "core/rendering/style/RenderStyle.h" |
| 32 | 32 |
| 33 namespace blink { | 33 namespace blink { |
| 34 | 34 |
| 35 class RenderTextFragment; | |
| 36 | |
| 37 class PseudoElement : public Element { | 35 class PseudoElement : public Element { |
| 38 public: | 36 public: |
| 39 static PassRefPtrWillBeRawPtr<PseudoElement> create(Element* parent, PseudoI
d); | 37 static PassRefPtrWillBeRawPtr<PseudoElement> create(Element* parent, PseudoI
d); |
| 40 | 38 |
| 41 virtual PassRefPtr<RenderStyle> customStyleForRenderer() override; | 39 virtual PassRefPtr<RenderStyle> customStyleForRenderer() override; |
| 42 virtual void attach(const AttachContext& = AttachContext()) override; | 40 virtual void attach(const AttachContext& = AttachContext()) override; |
| 43 virtual bool rendererIsNeeded(const RenderStyle&) override; | 41 virtual bool rendererIsNeeded(const RenderStyle&) override; |
| 44 | 42 |
| 45 virtual bool canStartSelection() const override { return false; } | 43 virtual bool canStartSelection() const override { return false; } |
| 46 virtual bool canContainRangeEndPoint() const override { return false; } | 44 virtual bool canContainRangeEndPoint() const override { return false; } |
| (...skipping 23 matching lines...) Expand all Loading... |
| 70 if (style->styleType() == FIRST_LETTER || style->styleType() == BACKDROP) | 68 if (style->styleType() == FIRST_LETTER || style->styleType() == BACKDROP) |
| 71 return true; | 69 return true; |
| 72 return style->contentData(); | 70 return style->contentData(); |
| 73 } | 71 } |
| 74 | 72 |
| 75 DEFINE_ELEMENT_TYPE_CASTS(PseudoElement, isPseudoElement()); | 73 DEFINE_ELEMENT_TYPE_CASTS(PseudoElement, isPseudoElement()); |
| 76 | 74 |
| 77 } // namespace | 75 } // namespace |
| 78 | 76 |
| 79 #endif | 77 #endif |
| OLD | NEW |