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

Side by Side Diff: third_party/WebKit/Source/core/html/shadow/MeterShadowElement.h

Issue 1428703004: Make <meter> transparent if -webkit-appearance:none or background CSS property is specified. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 20 matching lines...) Expand all
31 #ifndef MeterShadowElement_h 31 #ifndef MeterShadowElement_h
32 #define MeterShadowElement_h 32 #define MeterShadowElement_h
33 33
34 #include "core/html/HTMLDivElement.h" 34 #include "core/html/HTMLDivElement.h"
35 #include "wtf/Forward.h" 35 #include "wtf/Forward.h"
36 36
37 namespace blink { 37 namespace blink {
38 38
39 class HTMLMeterElement; 39 class HTMLMeterElement;
40 40
41 class MeterFallbackElement : public HTMLDivElement {
42 public:
43 DECLARE_NODE_FACTORY(MeterFallbackElement);
44
45 private:
46 explicit MeterFallbackElement(Document&);
47 PassRefPtr<ComputedStyle> customStyleForLayoutObject() override;
48 };
49
41 class MeterShadowElement : public HTMLDivElement { 50 class MeterShadowElement : public HTMLDivElement {
42 protected: 51 protected:
43 explicit MeterShadowElement(Document&); 52 explicit MeterShadowElement(Document&);
44 HTMLMeterElement* meterElement() const; 53 HTMLMeterElement* meterElement() const;
45 54
46 private: 55 private:
47 bool layoutObjectIsNeeded(const ComputedStyle&) override; 56 bool layoutObjectIsNeeded(const ComputedStyle&) override;
48 }; 57 };
49 58
50 class MeterInnerElement final : public MeterShadowElement { 59 class MeterInnerElement final : public MeterShadowElement {
51 public: 60 public:
52 static PassRefPtrWillBeRawPtr<MeterInnerElement> create(Document&); 61 static PassRefPtrWillBeRawPtr<MeterInnerElement> create(Document&);
53 62
54 private: 63 private:
55 explicit MeterInnerElement(Document&); 64 explicit MeterInnerElement(Document&);
56 bool layoutObjectIsNeeded(const ComputedStyle&) override; 65 bool layoutObjectIsNeeded(const ComputedStyle&) override;
57 LayoutObject* createLayoutObject(const ComputedStyle&) override; 66 LayoutObject* createLayoutObject(const ComputedStyle&) override;
67 PassRefPtr<ComputedStyle> customStyleForLayoutObject() override;
58 }; 68 };
59 69
60 class MeterBarElement final : public MeterShadowElement { 70 class MeterBarElement final : public MeterShadowElement {
61 private: 71 private:
62 explicit MeterBarElement(Document&); 72 explicit MeterBarElement(Document&);
63 73
64 public: 74 public:
65 static PassRefPtrWillBeRawPtr<MeterBarElement> create(Document&); 75 static PassRefPtrWillBeRawPtr<MeterBarElement> create(Document&);
66 }; 76 };
67 77
68 class MeterValueElement final : public MeterShadowElement { 78 class MeterValueElement final : public MeterShadowElement {
69 public: 79 public:
70 static PassRefPtrWillBeRawPtr<MeterValueElement> create(Document&); 80 static PassRefPtrWillBeRawPtr<MeterValueElement> create(Document&);
71 void setWidthPercentage(double); 81 void setWidthPercentage(double);
72 void updatePseudo() { setShadowPseudoId(valuePseudoId()); } 82 void updatePseudo() { setShadowPseudoId(valuePseudoId()); }
73 83
74 private: 84 private:
75 explicit MeterValueElement(Document&); 85 explicit MeterValueElement(Document&);
76 const AtomicString& valuePseudoId() const; 86 const AtomicString& valuePseudoId() const;
77 }; 87 };
78 88
79 } 89 }
80 90
81 #endif // MeterShadowElement_h 91 #endif // MeterShadowElement_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698